* {
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background-image: url(bg2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.wrapper {
    backdrop-filter: blur(25px);
    color: white;
    width: 400px;
    border: 2px solid;
    border-radius: 20px;
    padding: 30px 40px;
}

.wrapper h1 {
    font-size: 36px;
    text-align: center;
}

.user_name_contain {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.user_name_contain input {
    width: 100%;
    height: 100%;
    background-color: transparent;
    outline: none;
    border: none;
    border: 2px solid gray;
    border-radius: 40px;
    font-size: 16px;
    color: white;
    padding: 20px 45px 20px 20px;
    letter-spacing: 2px;
}

.user_name_contain ::placeholder {
    color: white;
}

.user_name_contain i {
    position: absolute;
    right: 20px;
    top: 30%;
    transform: translate(-50%);
    font-size: 20px;
}

.check_box_contain {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin: -15px 0 15px;
}

.check_box_contain label input {
    margin-right: 2px;
}

.check_box_contain a {
    color: white;
    text-decoration: none;
}

.check_box_contain a:hover {
    text-decoration: underline;
}

.btn button {
    width: 100%;
    height: 50px;
    background-color: transparent;
    outline: none;
    border: none;
    border: 2px solid grey;
    border-radius: 40px;
    font-size: 20px;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.register_contain {
    font-size: 16px;
    text-align: center;
    margin: 20px 0px 5px;
}

.register_contain a {
    text-decoration: none;
    color: white;
}

.register_contain a:hover {
    text-decoration: underline;
    cursor: pointer;
}