*{
    margin: 0;
    padding: 0%;
    box-sizing: border-box;
    font-family: "poppins";
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background:url(images\ \(2\).jpeg) no-repeat;
    background-size: cover;
    background-position: center;
}
.wrapper{
    width: 400px;
    color: white;
    border: 2px solid rgba(255,255,255,.2);
    border-radius: 12px;
    padding: 30px 40px;
    backdrop-filter: blur(10px);
}
.wrapper h1{
    font-size: 36px;
    text-align: center;
}
.user_contain{
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}
.user_contain input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255,255,255,.2);
    border-radius:40px; 
    font-size: 16px;
    color: white;
    padding: 20px 45px 20px 20px;
}
.user_contain input::placeholder{
    color: white;
}
.user_contain i{
    position: absolute;
    right: 20px;
    top:30%;
    transform: translate(-50%);
    font-size: 20px;
}
.checkbox_contain{
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin: -15px 0 15px;
}
.checkbox_contain label input{
    accent-color: white;
    margin-right: 1px;
}
.checkbox_contain a{
    color: white;
    text-decoration: none;
}
.checkbox_contain a:hover{
    text-decoration: underline;
}
.btn{
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0 0 0 .1);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}
.register_link{
    font-size: 15px;
    text-align: center;
    margin: 20px 0 15px;
}
.register_link p a{
    color: white;
    font-weight: 600;
    text-decoration: none;
}
.register_link p a:hover{
    text-decoration: underline;
}