.doctaforum-access-form {
    /* padding: 50px 20px; */
    text-align: center;
    max-width: 500px;
    /* width: clamp(350px, 450px, 500px); */
    margin: 0 auto;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctaforum-access-form h2 {
    margin-bottom: 20px;
    color: #333;
}
.doctaforum-access-form p{
    margin-bottom: 20px;
    line-height: 15px;
    color: #666;
}
.doctaforum-access-form input[type="text"] {
    padding: 10px;
    width: 100%;
    max-width: 300px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.doctaforum-access-form button,
.doctaforum-access-form .button {
    background: var(--secondary);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin: 0 !important;
}
.doctaforum-access-form button:hover,
.doctaforum-access-form .button:hover {
    background: var(--primary);
}

form#form_content_protected{
    width: clamp(350px, 90%, 500px);
    width: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 15px 30px !important;
    /* border: 1px solid var(--primary); */
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.info-modal-password {
    font-size: 16px;
    line-height: 15px;
    color: #666;
    font-family: 'Aptos';
    margin: 10px 0;
}

#forgot_password_form{
    margin: 20px 0;
}

#forgot_password_form button{

    width: fit-content;
    color: #fff;
    padding: 10px 30px;
    border: none;
    border-radius: 5px;

}

.img-info{
    width: 100px;
    height: auto;
}

.text-info-page{
    font-size: 16px;
    line-height: 20px;
    color: #666;
    font-weight: 400;
    text-align: justify;
    margin: 10px 0;
}

.btn-modal-recover{
    font-size: 16px;
    text-align: left;
}

.btn-modal-recover:hover{
    cursor: pointer;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .doctaforum-access-form h2{
        font-size: 23px !important;
    }
}

@media (max-width: 420px) {
    .doctaforum-access-form{
        height: 90vh;
    }
}