/* Login */

/*This fix the margin bottom of fotter for login page*/
body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/*End fix*/

.login__main__container {
    height: 75vh;
}

.login__main__container__title {
    position: relative;
    top: 60px;
    text-align: center;
}

.login__main__container__title h2 {
    font-size: 35px;
    color: var(--nieve-primary-purple);
    line-height: 48px;
    padding: 1.5rem;
}

.login__main__container__form {
    background-image: url("../img/fondos/nieve_login.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: relative;
    top: 100px;
    height: 440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0 1.5rem;
}

.login__main__container__form__inputs {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 20rem;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.login__main__container__form__inputs h4 {
    font-size: 25px;
    color: var(--nieve-primary-purple);
}

.login__main__container__form__inputs a {
    width: 100%;
    color: var(--verano--validation--error);
    text-align: right;
    font-size: 12px;
    text-decoration: underline;
    margin-bottom: 1rem;
}

.lgn-btn {
    border: none;
    padding: 0.5rem 3rem;
    border-radius: 5px;
    width: 100%;
    text-align: center;
    font-weight: bold;
    background-color: var(--nieve-primary-red);
    color: #FFF;
}

/* Responsive */
@media screen and (min-width: 932px) {
    .login__main__container {
        padding: unset !important;
    }

    .login__main__container__image {
        background-image: url(../img/fondos/nieve_fondo_steps.png);
        background-repeat: no-repeat;
        height: 350px;
        width: 100%;
        background-size: cover;
        position: absolute;
    }

    .login__main__container__form {
        top: 130px;
    }

    .login__main__container__title h2 {
        padding: 3.5rem 1.5rem 0 1.5rem;
    }

    .login__main__container__form {
        width: 60rem;
    }
}

/* Validation error */
.validation-error {
    color: red;
    font-size: 12px;
}

