* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: linear-gradient(120deg, white, black);
}

.form-body {
    width: 420px;
    color: #fff;
}

.form-body h1 {
    font-size: 30px;
    text-align: center;
}

.form-body .input-box {
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.input-box input {
    width: 100%;
    height: 100%;
    outline: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    background: transparent;
    font-size: 16px;
    padding: 20px;
    color: #fff;
}

.input-box input::placeholder {
    color: black;
}

.input-box .bx-envelope {
    position: relative;
    right: -93%;
    top: -70%;
}

.input-box .bxs-lock-alt {
    position: relative;
    right: -93%;
    top: -73%;
}

.input-box.error input {
    border-color: #ff3860;
}

.input-box .error {
    position: relative;
    color: #ff3860;
    font-size: 15px;
    top: -35%;
    right: -2%;
    height: 13px;
}

.input-box.success input {
    border-color: #09c372;
}

.form-body .submit {
    width: 100%;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    outline: none;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(14, 10, 97, 0.1);
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.form-body .register-link {
    font-size: 15px;
    margin: 15px 0 15px 10px;
    text-align: center;
}

.register-link a {
    color: #fff;
    text-decoration: none;
}

.register-link p a:hover {
    text-decoration: underline;
}

.form-body .logo {
    text-align: center;
}

.logo img {
    width: 50%;
}