/* =====================================================
   ACCESO PRIVADO
===================================================== */

.login-page {

    max-width: 1240px;

    margin: 0 auto;

    display: flex;

    justify-content: center;

    padding:
        55px 5vw 100px;
}


/* =====================================================
   TARJETA
===================================================== */

.login-container {

    width: 100%;

    max-width: 520px;

    padding: 55px 60px 60px;

    background: #fff;

    border: 1px solid #e8e8e8;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.06);
}


/* =====================================================
   ICONO
===================================================== */

.login-icon {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 28px;

    border: 1px solid #ddd;

    border-radius: 50%;

    color: #222;

    font-size: 0.85rem;
}


/* =====================================================
   TITULO
===================================================== */

.login-title {

    margin: 0 0 18px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(2.8rem, 4vw, 4rem);

    font-weight: 500;

    line-height: 1;

    white-space: nowrap;

    color: #111;
}


/* =====================================================
   DESCRIPCION
===================================================== */

.login-description {

    margin-bottom: 40px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 1.05rem;

    line-height: 1.5;

    color: #777;
}




/* =====================================================
   FORMULARIO
===================================================== */

.login-form {

    display: flex;

    flex-direction: column;

    gap: 22px;
}


/* =====================================================
   CAMPOS
===================================================== */

.login-field {

    display: flex;

    flex-direction: column;

    gap: 8px;
}


.login-field label {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.62rem;

    font-weight: 500;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #777;
}


.login-field input {

    width: 100%;

    box-sizing: border-box;

    padding:
        13px 0;

    border: none;

    border-bottom: 1px solid #ccc;

    border-radius: 0;

    background: transparent;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 1.2rem;

    color: #111;

    outline: none;

    transition:
        border-color 0.3s ease;
}


.login-field input:focus {

    border-bottom-color: #111;

    outline: none;
}


/* =====================================================
   BOTON
===================================================== */

.login-button {

    align-self: flex-start;

    margin-top: 15px;

    padding:
        13px 30px;

    border: none;

    border-radius: 0;

    background: #111;

    color: #fff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.62rem;

    font-weight: 500;

    letter-spacing: 2px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.login-button:hover {

    background: #333;

    transform: translateY(-1px);
}


/* =====================================================
   ERROR
===================================================== */

.login-error {

    margin-bottom: 25px;

    padding: 14px 16px;

    border-left: 2px solid #111;

    background: #f7f7f7;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.75rem;

    line-height: 1.5;

    color: #555;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 600px) {

    .login-page {

        min-height: auto;

        padding:
            60px 20px;
    }


    .login-container {

        padding:
            40px 30px 45px;
    }


    .login-title {

        font-size: 3.2rem;
    }


    .login-description {

        font-size: 1.2rem;
    }

}