@import url("./estilosGenerales.css");
@import url("./estilosBarraLateral.css");
@import url("./estilosTablas.css");
@import url("./estilosPopup.css");
@import url("./estilosFormularios.css");
@import url("./estilosBotones.css");
@import url("./estilosFiltros.css");

.authLayout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #eef8ee;
}

.authPanelBienvenida {
    background: var(--prov-gradient);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 5.556vh 2.500vw 3.704vh;
    text-align: center;
    position: relative;
}

.authBienvenidaTop {
    display: flex;
    justify-content: center;
}

.authLogoIcono {
    width: 3.646vw;
    height: auto;
    filter: brightness(0) invert(1);
}

.authBienvenidaCentro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.852vh;
}

.authSubtitulo {
    font-size: 1.354vw;
    font-weight: 600;
    letter-spacing: 0.365vw;
    opacity: 0.95;
}

.authTitulo {
    font-size: 4.167vw;
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
}

.authSociales {
    display: flex;
    align-items: center;
    gap: 3.125vw;
    background: rgba(255, 255, 255, 0.36);
    border: 0.104vw solid rgba(255, 255, 255, 0.6);
    border-radius: 0.521vw;
    padding: 1.389vh 2.604vw;
}

.authSociales a {
    color: #fff;
    font-size: 1.563vw;
    text-decoration: none;
    transition: opacity 0.2s;
}

.authSociales a:hover {
    opacity: 0.7;
}

.authPanelForm {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.704vh 2.083vw;
}

.authCard {
    width: min(27.083vw, 100%);
    background: #fff;
    border: 0.052vw solid var(--prov-border);
    border-radius: 1.042vw;
    box-shadow: var(--prov-shadow-md);
    padding: 2.407vh 1.354vw;
}

.authCard h2 {
    margin: 0 0 0.741vh;
}

.authCard .sub {
    margin: 0 0 1.852vh;
    color: var(--prov-muted);
}

.authActions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.926vh;
}

.authLinks {
    margin-top: 1.296vh;
    color: var(--prov-muted);
}

.js-login-tab.active {
    background: var(--prov-gradient);
    color: #fff;
    border-color: transparent;
}

.inputWithIcon {
    position: relative;
}

.inputWithIcon button {
    position: absolute;
    right: 0.417vw;
    top: 0.556vh;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: var(--prov-muted);
}

.message {
    border-radius: 0.625vw;
    padding: 0.926vh 0.625vw;
    font-size: 0.729vw;
    margin-bottom: 1.111vh;
    border: 0.052vw solid;
}

.messageSuccess {
    color: #0f5a49;
    background: #e6f3ef;
    border-color: #cde5de;
}

.messageError {
    color: #8f2f24;
    background: #f9ecea;
    border-color: #f0d5cf;
}

.welcomeCard {
    display: grid;
    gap: 0.741vh;
}

.welcomeCard .nit {
    color: var(--prov-muted);
}

.hidden {
    display: none !important;
}

@media (max-width: 61.25em) {
    .authLayout {
        grid-template-columns: 1fr;
    }
}
