body {

    background-image: url(../images/WALL.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;

}

.wrapper {
   position: relative;
   width: 400px;
   height: 440px;
   background: transparent;
   border: 2px solid rgba(5, 5, 5, 0.5);
   backdrop-filter: blur(20px);
   border-radius: 25px;
   display: flex;
   justify-content: center;
   align-content: center;
   align-items: center;
}

.wrapper .formbox {
    width: 100%;
    padding: 40px;

}

.formbox h2 {
    font-size: 2rem;
    text-align: center;
    color: #fff;
}

.input-box {
    width: 100%;
    position: relative;
    height: 50px;
    border-bottom: 2px solid black;
    margin: 30px 0;
}

.input-box label {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    font-size: 1em;
    color: black;
    font-weight: 700;
    pointer-events: none;
    transition: 0.5s;
    border: none;
    width: 65px;
    height: 30px;
    align-items: center;
    
    
}

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    color: black;
    font-weight: 600;
    padding: 75px 35 0 5px;

}

.input-box input:focus~label,
.input-box input:valid~label {
    top: -5px;

}

.remember-forgot {
    font-size: .9rem;
    color: #fff;
    font-weight: bold;
    display: flex;
    margin: -15px 0 15px;
    justify-content: space-between;

}

.remember-forgot label input {
    accent-color: #fff;
    text-decoration: none;
    padding-left: 15px;
}

.remember-forgot a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.remember-forgot a:hover {
    text-decoration: underline;
    color: aqua;
}

.remember-forgot a::after {
    text-decoration: aqua;
}

.btn {
    width: 100%;
    height: 45px;
    border: solid black;
    border-radius: 17px;
    background: transparent;
    outline: none;
    font-weight: bolder;
    font-size: 1em;
    cursor: pointer;
    color: #fff;
    transition: 0.6s;
}

.btn:hover {
    background: aqua;
}

btn:active {
    columns: #fff;
    background: transparent;
}

.btn:active::after {
    width: 100%;
    background: transparent;
}


.btn:hover::after {
    width: 100%;
    background: transparent;
}

.login-register {
    font-size: 1em;
    color: #162928;
    text-align: center;
    font-weight: bolder;
    margin: 25px 0 10px;
}

.login-register p a {
    font-size: 1em;
    font-weight: bolder;
    color: black;
    text-decoration: none;
}

.login-register p a:hover {
    text-decoration: underline;
    color: aqua;
    cursor: pointer;
}
