@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body{
    font-family: 'Roboto', sans-serif;
}

/* header{
    padding: 10px;
} */

.login__container{
    position: relative;
}

.imgLogo{
    position: absolute;
    top: 15px;
    left: 15px;
}

.container{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../img/greenWaves.svg');
    background-position:bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

.background-container{
    overflow: hidden;
    height: 100vh;
}

.imgLogin{
    width: 140px;
    margin: 20px;
}

.Login{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #fff;
    border-radius: 15px;
    width: 400px;
    height: 410px;
    z-index: 9998;
}

.title{
    font-size: 1.8em;
    color: #169E3B;
    font-weight: 500;
}

input{
    margin: 10px;
    padding: 5px 40px  ;
    width: 300px;
    height: 45px;
    border-radius: 7px;
    border: 1px solid #D6D6D6;
}

input:focus{
border: 1px solid #169E3B;
}

.btn__login{
    margin-top: 20px;
    width: 234px;
    height: 42px;
    border-radius: 15px;
    color: #fff;
    border: none;
    background-color: #169E3B;
    font-weight: bold;
    cursor: pointer;
    transition: ease-in-out .3s;
    text-transform: uppercase;
}

.btn__login:hover{
background-color: #108C32;
color: #fff;
}

.link__forgot-container{
    width: 100%;
    margin: 25px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.link__forgot{
    margin-right: 20px;
}

.link__forgot a{
    
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

.link__forgot a:hover{
    text-decoration: underline;
}

.password span,
.user span{
    font-size: 1em;
    color: #bfbfbf;
    font-weight: 400;
    padding: 0 0 0 10px;
}

.user__container,
.password__container{
    position: relative;
}
.user__container .userPic,
.password__container .lockPic{
    position: absolute;
    width: 25px;
    color: #0A4D7C;
    top: 20px;
    left: 20px;
}


.alert-error{
    padding: 5px;
    color: red;
    font-size: 15px;
    transition: all ease .3s;
}