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

/* Body */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0f172a;
    color: #e2e8f0;
    line-height: 1.6;
}

/* Links */
a {
    color: #38bdf8;
    text-decoration: none;
    transition: 0.2s;
}
a:hover {
    text-decoration: underline;
}

/* Formular-Styling */
form {
    max-width: 400px;
    margin: 100px auto;
    padding: 30px;
    background-color: #1e293b;
    border-radius: 12px;
    box-shadow: 0 0 20px #00000055;
}
label, input {
    display: block;
    width: 100%;
    margin-bottom: 15px;
}
input {
    padding: 10px;
    border-radius: 8px;
    border: none;
    background-color: #0f172a;
    color: #e2e8f0;
}

/* Fehlerausgabe */
.error {
    color: #f87171;
    margin-bottom: 10px;
}

/* Buttons */
button {
    background-color: #38bdf8;
    color: #0f172a;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    width: 100%;
}
button:hover {
    background-color: #0ea5e9;
}

/* Links unten im Formular */
.links {
    text-align: center;
    margin-top: 15px;
}
.links a {
    color: #38bdf8;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}
.links a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    form {
        margin: 60px 20px;
    }
}
