/* ==========================================================
   ADMH
   Login
   Tema: Default
   ========================================================== */


/* ==========================================================
   ESTRUCTURA GENERAL
   ========================================================== */

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}


/* ==========================================================
   CONTENEDOR PRINCIPAL DE AUTENTICACIÓN
   ========================================================== */

.admh-auth-page {
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background-image: url("../img/background-login.142b11266401.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    box-sizing: border-box;
}

.admh-auth-container {
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;
}


/* ==========================================================
   CONTENEDOR DEL LOGIN
   ========================================================== */

.admh-login-page {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;
}


/* ==========================================================
   TARJETA DE LOGIN
   ========================================================== */

.admh-login-card {
    width: 100%;
    max-width: 430px;

    padding: 38px 40px;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid rgba(255, 255, 255, 0.85);

    border-radius: 16px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.18);

    box-sizing: border-box;
}


/* ==========================================================
   ENCABEZADO
   ========================================================== */

.admh-login-header {
    margin-bottom: 28px;
}

.admh-logo {
    display: block;

    width: 120px;
    height: auto;

    margin: 0 auto;
}

.admh-login-title {
    margin-top: 18px;
    margin-bottom: 8px;

    font-size: 30px;
    font-weight: 700;

    line-height: 1.2;

    color: #172033;
}

.admh-login-subtitle {
    margin: 0;

    font-size: 15px;
    line-height: 1.5;

    color: #6c757d;
}


/* ==========================================================
   MENSAJES
   ========================================================== */

.admh-login-alert {
    margin-bottom: 22px;

    font-size: 14px;
}


/* ==========================================================
   FORMULARIO
   ========================================================== */

.admh-login-card .form-label {
    margin-bottom: 7px;

    font-weight: 600;

    color: #343a40;
}

.admh-login-card .form-control {
    width: 100%;
    height: 48px;

    padding: 10px 13px;

    border: 1px solid #ced4da;
    border-radius: 8px;

    box-sizing: border-box;

    font-size: 15px;
}

.admh-login-card .form-control:focus {
    border-color: #86b7fe;

    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}


/* ==========================================================
   RECORDAR
   ========================================================== */

.admh-login-card .form-check {
    display: flex;
    align-items: center;

    min-height: 24px;
}

.admh-login-card .form-check-input {
    margin-top: 0;

    cursor: pointer;
}

.admh-login-card .form-check-label {
    margin-left: 6px;

    color: #495057;

    cursor: pointer;
}


/* ==========================================================
   BOTÓN DE INGRESO
   ========================================================== */

.admh-login-button {
    height: 50px;

    border-radius: 8px;

    font-size: 16px;
    font-weight: 600;

    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.admh-login-button:hover {
    transform: translateY(-1px);

    box-shadow:
        0 5px 12px rgba(0, 0, 0, 0.15);
}

.admh-login-button:active {
    transform: translateY(0);
}


/* ==========================================================
   PIE DEL LOGIN
   ========================================================== */

.admh-login-footer {
    margin-top: 24px;

    color: #8a939d;
}

.admh-login-footer small {
    font-size: 12px;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 576px) {

    .admh-auth-page {
        padding: 20px 15px;
    }

    .admh-auth-container {
        min-height: auto;
    }

    .admh-login-card {
        max-width: 100%;

        padding: 30px 25px;

        border-radius: 14px;
    }

    .admh-logo {
        width: 105px;
    }

    .admh-login-title {
        font-size: 26px;
    }

    .admh-login-subtitle {
        font-size: 14px;
    }

}


/* ==========================================================
   PANTALLAS DE POCA ALTURA
   ========================================================== */

@media (max-height: 650px) {

    .admh-auth-page {
        align-items: flex-start;

        padding-top: 25px;
        padding-bottom: 25px;
    }

    .admh-auth-container {
        min-height: auto;
    }

}