body {
    background-color: #fff;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 10vh;
}

main > h1 {
    color: #62B3B8;
    font-family: 'Lemon', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 150%; 
    padding: 19px;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

ul {
    width: 400px;
    padding-top: 1vw;
}

#form-container {
    width: 500px;
    border-radius: 25px;
    border: 1px solid #62B3B8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#form-container > h2 {
    color: #62B3B8;
    font-family: Lexend;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    padding: 10px;
}

#id_username, #id_email, #id_password1, #id_password2 {
    width: 376px;
    height: 55px;
    border: 1px solid rgba(128, 128, 128, 0.50);
    border-radius: 15px;
    background-color: #FFF;
    margin: 13px 0 0 0;
}

#id_username::placeholder, #id_email::placeholder, #id_password1::placeholder, #id_password2::placeholder {
    color: #80808080;
    font-size: 1rem;
}

input[type="text"], input[type="email"], input[type="password"] {
    font-size: 1rem;
    padding: 0 12px;
}

button {
    width: 400px;
    height: 60px;
    border-radius: 40px;
    border: none;
    background-color: #62B3B8;
    margin: 30px 0;
    cursor: pointer;
}

button > span {
    color: #fff;
    font-size: 1.3rem;
}

#login-container {
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.line {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
}

.left-line, .right-line {
    width: 80px;
    height: 1.5px;
    background-color: #80808080;
}

.line > p {
    color: #80808080;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Lemon', sans-serif;
}

.login {
    padding: 0 0 30px 0;
}

.login:hover {
    text-decoration: underline;
}