*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: "poppins", sans-serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background;

}
.wrapper{
    width: 420px;
    background-color: transparent;
    border: solid;
    backdrop-filter: blur(2px);
    color: white;
    border-radius: 10px;
    padding: 30px 40px;
}
.wrapper h4{
    font-size: 36px;
    text-align: center;
}
.wrapper .input-box{
    width: 100%;
    height: 50px;
    margin: 30px 0px;
    text-align: center;
    position: relative;
}
.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(225, 225, 225, .2);
    border-radius: 40px;
    font-size: 16px;
    padding: 20px 45px 20px 20px;
}
.input-box input::placeholder {
    color: white;
}
.input-box i{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}
.wrapper .remember-forget{
    display: flex;
    justify-content: space-between;
    margin: -15px 0px 15px;
    font-size: 14.5px;   
}
.remember-forget label input{
    accent-color: white;
    margin-right: 3px;
}
.remember-forget a{
    color: white;
    text-decoration: none;
}
.wrapper button{
    width: 100%;
    height: 45px;
    background-color: white;
    border: none;
    outline:none ;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}
.wrapper .register{
    font-size: 14.5px;
    text-align: center;
    margin-top: 20px;
}
.register p a{
    font-weight: 600;
    color: white;
    text-decoration: none;
}
.register p a:hover{
    text-decoration: underline;
}
.backvideo {
    position: absolute;
    right: 0%;
    z-index: -1;
    display: flex;
}
.footer {
    position: absolute;
    bottom:0;
    text-align: center;
    color: antiquewhite;
    padding: 15PX;
}
.site-title{
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #22c55e;          /* light green */
    font-size: 42px;
    font-weight: 800;        /* bold */
    letter-spacing: 2px;
    z-index: 10;
    font-family: 'Poppins', sans-serif;
}
