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

/* Body */
body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 0 10px;
}

/* Header */
header {
    background-color: #1f1f1f;
    padding: 20px 0;  /* Mehr Platz oben und unten */
    border-bottom: 2px solid #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);  /* Subtile Schatten */
}

header .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

header .logo {
    width: 150px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

header .logo:hover {
    transform: scale(1.1);  /* Leichter Zoom-Effekt bei Hover */
}

header nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

header nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 20px;
    font-size: 1.2rem;  /* Größere Schriftgröße */
    font-weight: 500;  /* Etwas stärkere Schrift */
    text-transform: uppercase;  /* Großbuchstaben */
    transition: color 0.3s ease, transform 0.3s ease;
}

header nav a:hover {
    color: #ff9800;
    transform: scale(1.05);  /* Leichter Zoom-Effekt bei Hover */
}

/* Form Styles (Login und Register) */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1f1f1f;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

form h2 {
    font-size: 2rem;
    color: #ff9800;
    margin-bottom: 20px;
}

input[type="text"], input[type="password"] {
    background-color: #333;
    color: #fff;
    border: 1px solid #444;
    border-radius: 5px;
    padding: 12px;
    margin: 10px 0;
    width: 100%;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input[type="text"]:focus, input[type="password"]:focus {
    border-color: #ff9800;
    outline: none;
}

button {
    background-color: #ff9800;
    color: #fff;
    padding: 12px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #e68900;
}

form p {
    color: #bbbbbb;
    font-size: 0.9rem;
    margin-top: 10px;
}

form .register-link {
    text-align: center;
    font-size: 0.9rem;
    color: #ff9800;
    text-decoration: none;
}

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

/* Page Layout */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

footer {
    background-color: #1f1f1f;
    text-align: center;
    padding: 10px 0;
    border-top: 2px solid #333;
    position: sticky;
    bottom: 0;
    width: 100%;
}

footer p {
    color: #bbbbbb;
    font-size: 0.9rem;
}
