@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;
}



.login__container{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../img/page-turner2.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

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

.imgLogin{
    width: 250px;
    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: 10000;
}

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

input:focus{
border: 1px solid #0A4D7C;
}

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

.btn__login:hover{
background-color: #0A4D7C;
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;
}


.user__container{
    position: relative;
}

.user__container .userPic{
    position: absolute;
    width: 25px;
    filter: #0A4D7C;
    top: 20px;
    left: 20px;
}

.password__container{
    position: relative;
}

.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;
}