*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    text-decoration: none;
    font-family: sans-serif;
}
body{
    background-image: url(https://e1.pxfuel.com/desktop-wallpaper/398/435/desktop-wallpaper-login-page-login.jpg);
    background-size: cover;

}
.login{
    display: flex;
    justify-content: center;
    margin-top: 100px;

}
.box{
    padding: 0 25px ;
    backdrop-filter: blur(20px);
    height: 420px;
    width: 350px;
    border-radius: 15px;
    border: 3px solid dodgerblue;
}
.box h1{
    color: white;
    text-align: center;
    margin-top: 30px;
    font-size: 1.8rem;
}
.box p{
    color: white;
}
form{
    margin-top: 50px;
}
form input{
    height: 40px;
    width: 100%;
    margin-bottom: 20px;
    background-color: transparent;
    border: 0px;
    outline: 0px;
    border-bottom: 2px solid #fff;
    color: white;

}
button{
    width: 100%;
    border-radius: 20px;
    height: 40px;
    border: none;
    background-color: blue;
    margin-top: 20px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}
button:hover{
    background-color: dodgerblue;
}
.links {
    margin-top: 20px;
    text-align: center;
}
.links a{
    color: white;
    font-size: 13px;
}
.links a:hover{
    color: blue;
}