body {
    /* background: linear-gradient(145deg, rgb(255, 255, 255) 0%, rgba(219,219,219,1) 89%); */
    background-color: #eee;
    
    display: flex;
    flex-direction: column;    
    align-items: center;
    font-family: sans-serif
}

.form-section {
    width: 350px;
    height: auto;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
    display: none;
}

.form-section.active {
    display: flex;
}

.form-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
}

.community-name {
    font-size: 22px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 20px;
}

.form-instruction {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 600;

}

.social-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.social-login-item {
    width: 100%;
    height: 40px;
    border: 1px solid #eee;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;   
    margin-top: 12px; 
    cursor: pointer;
    transition-duration: 0.2s;
}

.social-login-item:hover {
    background-color: #f9f9f9;
}

.social-login-item span {
    font-size: 14px;
    font-weight: 600;
    padding-left: 5px;
}

.form-social-img {
    width: 25px;
}

.form-divisor {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

.form-divisor-line {
    width: 40%;
    height: 1px;
    background-color: #ccc;
}

.form-divisor-text {
    width: 20%;
    text-align: center;
    color: #777;
}

.data-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 15px;
}

.data-form label {
    font-size: 14px;
    color: #777;
}

.data-form .login-input {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 16px;
    color: #777;
}

.mini-input-section {
    display: flex;
    justify-content: space-between;

}

.mini-input-section .input-codigo {
    width: 45px;
    height: 45px;
    font-size: 22px;
    font-weight: bold;
    text-transform: capitalize;
    text-align: center;
}

.login-button {
    width: 100%;
    padding: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 16px;
    color: white;
    background: linear-gradient(145deg, rgba(66,5,130,1) 0%, rgba(158,6,213,1) 89%);
    margin-bottom: 15px;
    min-height: 40px;

}

.login-button.disabled {
    background: #ccc;
    color: #666;
}

.login-button.secondary {
    background: #fff;
    color: rgba(66,5,130,1);
    border: 1px solid rgba(66,5,130,1);
}




@media screen and (max-width: 799px) {
    .form-section {
        width: 90vw;
    }
}