/* genrlea */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url(../image/img.jpg);
    background-size: cover;
    background-position: center center;
    font-family: "Poppins", sans-serif;
}

#main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* content-form */
.content-form {
    color: #fff;
    padding: 30px 40px;
    border-radius: 10px;
}

.content-form h2 {
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
}

.content-form .input-box {
    border-radius: 10px;
    margin: 10px 10px;
    width: 100%;
    height: 50%;
    position: relative;

}

.content-form .input-box input {
    background-color: transparent;
    border: none;
    outline: none;
    border-radius: 30px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #fff;
    padding: 10px 15px;
}

.content-form .input-box input::placeholder {
    color: #fff;
}

.content-form .input-box i {
    position: absolute;
    right: 20px;
    top: 30%;
    transform: translate(30%);
    font-size: 20px;
}

.content-form .remember-forgit {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    font-size: 14.5px;
    margin-left: 10px;
}

.content-form .remember-forgit a {
    padding-left: 20px;
    text-decoration: none;
    color: white;
}

.content-form .remember-forgit a:hover {
    text-decoration: underline;
}

.content-form .remember-forgit label input {
    accent-color: #fff;
    margin-right: 3px;
}

.content-form .btn-sumbit {
    width: 100%;
    height: 40px;
    color: #333;
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 40px;
    font-size: 16px;
    box-shadow: 0 0 10px rgb(0, 0, 0, .1);
    font-weight: 600;
    margin-left: 10px;
}

.content-form .register {
    text-align: center;
    margin-left: 10px;
    margin-top: 20px;
    font-size: 13.5px;

}

.content-form .register a {
    text-decoration: none;
    color: #fff;
}

.content-form .register a:hover {
    text-decoration: underline;
}