* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    color:white;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #0d0214;
    background-color: #fff;
}

.wrapper {
    width: 350px;
    height: 500px;
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    background-color: hwb(0 0% 100% / 0.603);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.input-box{
    position: relative;
    width: 100%;
    height:30px;
    border-bottom: 2px solid black;
    margin: 30px 0;
}

.input-box label{
    position: absolute;
    font-style: italic;
    top:10%;
    left:5px;
    transform: translateY(-50%);
    font-size: 1em;
    color: white;
    font-weight: 500px;
    pointer-events: none;
    transition: .5s;
}

h2 {
    font-family: serif;
    font-size: 2em;
    font-style: italic;
    color: white;
    text-align: center;
    margin-bottom: 70px;
}
.btn {
    width: 100%;
    height: 45px;
    background: rgb(157, 219, 230);
    border: none;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
}

.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    color: black;
    font-weight: 600;
    padding: 0 35px 0 5px;
}

.input-box input:focus~label ,
.input-box input:valid~label{
    top: -10px;
}

.input-box .icon{
    position: absolute;
    right: 8px;
    top:-10px ;
    font-size: 1.2em;
    color: white;
}

.remember-forget{
    font-size: .9em;
    color: black;
    font-weight: 500px;
    margin: -15px 0 15px;
    display: flex;
    justify-content: space-between;
}

.remember-forget label input{
    accent-color: navy;
    margin-right: 3px;
}

.remember-forget a{
    color: hsl(0, 0%, 93%);
    text-decoration: none;
}

.remember-forget a:hover{
    text-decoration: underline;
}

.btn{
    width: 100%;
    height: 45px;
    background:black ;
    border: none;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    color:#fff;
    font-weight: 500;
}