/* .title-section{
    margin: 5vh 5vw;
}
.title-section h2{
    color: var(--fid-primary);
}
.btn-return{
    border-radius: 8px;
    border: none;
    background-color: var(--fid-medio);
    color: white;
    padding: 8px 24px;
}
.btn-return:hover{
    background-color: var(--fid-primary);
}
.login-wrapper {
    margin-left: 5vw;
    width: 40vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form {
    width: 100%;
    padding: 24px;
}

.login-subtitle {
    text-align: center;
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.form-label {
    font-size: 13px;
    color: var(--fid-dark);
    font-weight: 500;
}

.form-control {
    border-radius: 6px;
    padding: 10px 12px;
}

.toggle-password {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--fid-primary);
    cursor: pointer;
    font-size: 14px;
}

.forgot-password {
    font-size: 15px;
    color: #ff3b3b;
    text-decoration: none;
}

.forgot-password:hover {
    color: #920909;
    text-decoration: underline;
}

.btn-login-fidelitas {
    background: var(--fid-primary);
    color: white;
    border: none;
    border-radius: 6px;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.3), 0 0 24px 0 rgba(211,227,244,0.2) inset;
}
.btn-login-fidelitas:hover {
    background-color: rgba(95, 138, 180, 0.2);
    color: var(--fid-primary);
    font-weight: bold;
    text-decoration: underline;
}

.btn-no-user {
    background: var(--fid-card);
    color: var(--fid-medio);
    text-decoration: underline;
    border: none;
    border-radius: 6px;
} */
 .login-im-background {
    height: calc(100vh - var(--navbar-height));
    background-image:url('../img_new/soluciones/auditoria.png');
    background-size: cover;
    background-position: top left;
    background-repeat: no-repeat;
}

.login-im-container {
    height: 80%;
}

.form-section {
    background-color: #FDFDFD;
    padding: 2%;
    border-radius: 16px;
    width: 100%;
    max-width: 620px;
}

/* Header */
.return-section a{
    text-decoration: none;
}
.title-section {
    width: 100%;
    color: var(--fid-primary);
}

.btn-return {
    background: none;
    border: none;
    color: var(--fid-primary);
    font-weight: 500;
    padding: 0;
}
.btn-return:hover {
    color: var(--fid-dark);
    text-decoration: underline;
    font-weight: bold;
}

/* Form columna */
.login-form {
    display: flex;
    flex-direction: column;
}
.login-form label{
    color: var(--fid-dark);
}
.forgot-password {
    font-size: 15px;
    color: var(--fid-dark);
    text-decoration: none;
}

.forgot-password:hover {
    color: var(--fid-dark);
    text-decoration: underline;
}

.btn-no-user{
    background-color: var(--fid-200);
    color: var(--fid-primary);
    text-decoration: none;
    border-radius: 8px;
}
.btn-no-user:hover{
    background-color: var(--fid-primary);
    color: white;
    font-weight: bold;
    text-decoration: underline;
}
.btn-login-fidelitas{
    background-color: var(--fid-primary);
    color: white;
    border-radius: 8px;
}
.btn-login-fidelitas:hover{
    background-color: var(--fid-200);
    color: var(--fid-primary);
    text-decoration: underline;
}
/* Ojo password */
.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
}
@media (max-width: 768px) {
    .login-im-background {
        height: auto;
        min-height: 100vh;
        padding: 20px 10px;
    }

    .login-im-container {
        height: auto;
        align-items: flex-start;
    }
    .form-section {
        padding: 24px 20px;
        border-radius: 14px;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .login-form .d-flex {
        flex-direction: column;
    }
    .return-section {
        margin-bottom: 10px;
    }
    .login-subtitle {
        font-size: 14px;
    }
    .title-section h2 {
        font-size: 22px;
        line-height: 1.3;
    }
    .login-form label {
        font-size: 14px;
    }
    .login-form input {
        font-size: 15px;
        padding: 10px 12px;
    }
    .login-form .d-flex {
        flex-direction: column;
        gap: 12px;
    }

    .btn-no-user,
    .btn-login-fidelitas {
        width: 100%;
        text-align: center;
    }
    .forgot-password {
        font-size: 14px;
        display: inline-block;
        padding: 0 10px;
    }
}
