body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    color: #FFC700;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

nav {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    background-color: #FFC700;
    color: #000000;
    z-index: 1000;
}

nav .menu {
    display: flex;
    align-items: center;
}

nav .menu ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

nav .menu ul li a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav .menu ul li a:hover {
    color: #c8b961;
}

.content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 60px); /* Platzierung unterhalb der Navigation */
    padding-top: 60px; /* Platz für den Navigationsbalken */
    box-sizing: border-box;
}

.account-box, .form-box, form {
    background-color: #000000;
    border: 2px solid #FFC700;
    padding: 1rem;
    width: 80%;
    max-width: 700px;
    box-sizing: border-box;
    border-radius: 8px;
}

form h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    text-align: center;
    color: #FFC700;
}

label {
    display: block;
    color: #FFC700;
    margin-bottom: 0.2rem;
    margin-top: 0.5rem;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 0.2rem;
    border: 1px solid #FFC700;
    background-color: #111;
    color: #FFC700;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #c8b961;
    outline: none;
}

button {
    background-color: #FFC700;
    color: #000;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    font-size: 1rem;
    margin-top: 1rem;
}

button:hover {
    background-color: #c8b961;
}

small {
    display: block;
    color: #c8b961;
    margin-top: 0.3rem;
    margin-bottom: 0.1rem;
}

.error {
    color: red;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}