


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}

body{
    background-color: lightgray;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: url(1.jpg);
    background-position: center;
    background-size: cover;

}

.page-login{
    background-color: transparent;
    width: 450px;
    color: #fff;
    padding: 45px 30px 20px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
}

.page-login h2{
    text-align: center;
    color: #fff;
}

.page-login .input-login{
    width: 100%;
    height: 45px;
    color: #fff;
    /* background-color: red; */
    margin-block: 20px;
    position: relative;

}

.input-login input{
    width: 100%;
    height: 100%;
    background-color: transparent;
    outline: none;
    border-radius: 45px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 1em 3em 1em 1em;
    font-size: 16px;
}   

.input-login input::placeholder{
    color: #fff;
}

.input-login i{
    position: absolute;
    right: 20px;
    top: 30%;
    font-size: 20px;
    
}

.page-login .remember-me{
    display: flex;
    justify-content: space-between;
    margin: -15px 0 15px;

}

.page-login .remember-me a{
    text-decoration: none;
    color: #fff;
}

.page-login .remember-me a:hover{
    text-decoration: underline;

}
.page-login .remember-me label input{
    accent-color: #fff;
    font-size: 16px;
    margin-right: 3px;
}


.page-login .btn{
    width: 100%;
    height: 45px;
    border-radius: 45px;
    outline: none;
    border: none;
    cursor: pointer;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 0 10 rgba(0, 0, 0, 0.1);
}

.register{

    text-align: center;
    font-size: 16px;
    margin: 20px 0 15px;
}

.register p a{
    text-decoration: none;
    color: #fff;
}

.register p a:hover{
    text-decoration: underline;
}
