/* ==========================================================
   AUTENTICACIÓN
========================================================== */

.auth-page {
    width: min(990px, calc(100% - 32px));

    margin: 42px auto;
}


/* ==========================================================
   LOGO
========================================================== */

.auth-logo {
    margin: 0 0 12px 24px;
}


/* ==========================================================
   TARJETA
========================================================== */

.auth-card {
    position: relative;

    min-height: 445px;

    padding: 125px 185px 55px;

    background-color: #ffffff;

    border: 1px solid #d2d2d2;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}


/* ==========================================================
   TÍTULO AZUL
========================================================== */

.auth-ribbon {
    position: absolute;

    top: 30px;
    left: -1px;

    min-width: 250px;

    padding: 20px 32px;

    color: #ffffff;

    background-color: #3c91b7;

    font-size: 20px;
    font-weight: 400;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.17);
}


.auth-ribbon::after {
    content: "";

    position: absolute;

    bottom: -10px;
    left: 0;

    border-top: 10px solid #236d8d;
    border-left: 10px solid transparent;
}


/* ==========================================================
   SELECT IDIOMA
========================================================== */

.auth-language {
    position: absolute;

    top: 37px;
    right: 28px;
}


.auth-language select {
    min-width: 130px;

    padding: 10px 15px;

    background-color: #ffffff;

    border: 1px solid #cfcfcf;
    border-radius: 4px;
}


/* ==========================================================
   FORMULARIO
========================================================== */

.auth-form {
    max-width: 620px;

    margin: 0 auto;
}


.auth-form label {
    display: block;

    margin-bottom: 7px;

    font-size: 16px;
}


.auth-form input,
.auth-form select,
.auth-form textarea {
    width: 100%;

    min-height: 52px;

    margin-bottom: 20px;

    padding: 10px 15px;

    background-color: #edf3fc;

    border: 1px solid #c7cfd9;
    border-radius: 4px;

    font-size: 17px;

    outline: none;
}


.auth-form input:focus {
    border-color: #3c91b7;

    box-shadow: 0 0 0 2px rgba(60, 145, 183, 0.15);
}


.auth-actions {
    display: flex;
    justify-content: flex-end;

    margin-top: 4px;
}


.auth-submit {
    min-width: 175px;

    min-height: 50px;

    color: #ffffff;

    background-color: #0e0e0e;

    border: 0;
    border-radius: 4px;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;
}


.auth-submit:hover {
    background-color: #292929;
}


/* ==========================================================
   PIE LOGIN
========================================================== */

.auth-note {
    margin-top: 18px;

    padding: 10px 28px;

    color: #777777;

    background-color: rgba(255, 255, 255, 0.65);

    border: 1px solid #d8d8d8;

    font-size: 12px;
}


.auth-secondary-link {
    display: block;

    margin-top: 18px;

    text-align: center;
}


@media (max-width: 750px) {

    .auth-card {
        padding:
            125px
            25px
            40px;
    }


    .auth-ribbon {
        min-width: 220px;
    }


    .auth-language {
        right: 15px;
    }

}