@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

*{
    box-sizing: border-box;
}


/*body{
    height: 100vh;
} */ 

/* body, div, form, input, a, p{
    margin: 0;
    padding:0;
} */

body{
    display: flex;
    flex-direction: column;
}


h1{
    color: #1f8eca;
    font-size: 4rem;
    font-weight: 700;
    font-family: "Exo 2", serif;
    margin-top: 2rem;
    margin-bottom: 0.2rem;
    
}
a{
    font-family: "Exo 2", serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: #1f8eca;
}
.login__wrapper{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 10px;
    max-width: 1400px;  
    position: absolute;
    top: 50%;
    left: 50%;
    /* transform: translate(-50%,calc(-50% - 6rem));   */
    transform: translate(-50%,calc(-50% - 3.5rem));
}

/*-----------IMAGEN----------*/

.login__img-conteiner{
    align-content: center;
    max-width: 35rem;
    overflow: hidden;
    max-height: initial;
    border-radius: 25px 0 0 25px;
    background: rgb(129,187,117);
    background: linear-gradient(90deg, rgba(129,187,117,1) 0%, rgba(132,200,232,1) 100%);
}
.login__input-container{
    position: relative;
}
.login__container #seePassLogin{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    cursor: pointer;
}

.login__img{
    height: 90%;
    object-fit: cover;
    width: 35rem;
    opacity: 0.74;
}

/*-----------LOGIN----------*/

.login__container{
    width: 60%;
    max-width: 40rem;
    padding: 12px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0 25px 25px 0;
}

.login{
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    font-family: "Nunito", serif;
    font-size: 1.5rem;
    font-weight: 700;
    border: none;
    -webkit-text-fill-color: #222;
    -webkit-box-shadow: none;
    transition: background-color 5000s ease-in-out 0s;
}

.login__input-container{
    display: flex;
    margin: 10px;
    max-width: 600px;
    width: 100%;
    margin-left: 0;
    align-items: center;
    border: none;
    border-bottom: 2px solid #26b0fc;
    background-color: transparent;
    color: #26b0fc;
    outline: none;
    font-size: 1.5rem;
    padding: 5px;
    margin: 8px;
}


.fa-regular, .fa-user, .fa-solid, .fa-lock{
    margin-right: 8px;
}

.login__input{
    border: none;
    font-family: "Nunito", serif;
    font-size: 1.5rem;
    outline: none;
    color: #222;
    background-color: transparent;
    width: 100%;
}

.login__input::placeholder{
    color: #48eb;
    font-size: 1.5rem;
}

/*-----------BOTÓN----------*/

.login__button{
    margin-top: 3rem;
    width: 100%;
    height: 40px;
    text-align: center;
    border-radius: 25px 5px 25px 5px;
    cursor: pointer;
    background-color: #26b0fc;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-family: "Nunito", serif;
    font-size: 1.5rem;
    outline: none;
    color: #fff;
    padding-top: 3px;
    font-weight: 700;
}


.login__button:hover{
    opacity: 0.7;
}

/*-----------RECUPERACIÓN DE CUENTA----------*/

.login__footer{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top:11rem;
    width: 100%;
}

.login__footer .mail_support{
    white-space: nowrap;
    font-family: "Nunito", serif;
    cursor: pointer;
    color: #1f8eca;
    font-size: 1.2rem;
    font-weight: 700;
}

.login__footer a{
    white-space: nowrap;
    font-family: "Nunito", serif;
    text-decoration: none;
    color: #67945e;
    font-size: 1.2rem;
    font-weight: 700;
}

.login__footer a:hover{
    opacity: 0.74;
}


/*-----------FOOTER----------*/

.footer{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: #155d83;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 7rem;
}

.footer__item{
    align-items: center;
    display: flex;
    flex-direction: row;
}

.footer__logo{
    width: 4rem;
    height: 4rem;
    box-sizing: border-box;
}

.footer__imagen{
    width: 4rem;
}

.footer__title{
    margin:0 1.5rem 0 1.1.5rem;
    font-family: "Exo 2";
    font-size: 1.8rem;
    color: #fff;
    box-sizing: border-box;
}

.footer__info, .footer__link{
    font-family: "Nunito";
    font-size: 1.3rem;
    color: #fff;
}

.footer__link:hover{
    opacity: 0.7;
}




@media screen and (max-width:740px){

    .login__wrapper{
        margin-top: auto;
    }
    .login__img-conteiner{
        display: none;
    }
    .login__container{
        width: 100%;
        border-radius: 25px;
        background-color: #dedfdc;
        background-image: url("/build/img/logoLogin2.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-blend-mode: soft-light;
        }
        h1{
            color: #333333;
            text-shadow: 1px 1px 1px #155d83;
        }
        a{
            color: #333333;
        }
    .login__input::placeholder{
        color: #333333;
    }
        .login__input-container{
            color: #333333;
            border-bottom: 3px solid #333333;
        
    }
    .login__button-container{
        width: 100%;
    }
    .login__button{
        background-color: #1f8eca;
        color:#333333
    }
    .login__footer{
        font-weight: 700;
    }
    .body_login{
        overflow-y: hidden;
        background-image:url("/build/img/backgroud_phone.svg");
        background-repeat: no-repeat;
        background-position: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}