body {
    min-height: 100vh;
    background: linear-gradient(
        135deg,
        #1e293b,
        #334155
    );
}

header {
    background: transparent;
    box-shadow: none;
}

header nav {
    width: min(1200px, 92%);
    margin: 0 auto;
    padding: 2rem 0;
}

header h1 {
    width: auto;
    margin: 0;
    padding: 0;
    color: white;
    font-size: 2rem;
}

#register-section {
    min-height: calc(100vh - 100px);

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 2rem;
}

#register-content {
    width: 100%;
    max-width: 500px;

    background: white;

    border-radius: 20px;

    padding: 3rem;

    box-shadow:
        0 20px 50px rgba(0,0,0,.25);
}

#register-content h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

#register-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#email-container,
#username-container,
#password-container,
#repeat-password-container {
    width: 100%;
    margin: 0;
    position: relative;
}

#register-form input {
    height: 56px;
}

#register-submit-btn {
    width: 100%;

    background: #2563eb;
    color: white;

    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

#login {
    text-align: center;
    display: block;
    margin-top: 1rem;
}

.fa-eye {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: #9ca3af;
}