/* style_login.css */
body {
    background: linear-gradient(135deg, #0a1622 0%, #1a2636 100%);
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #00eaff;
    text-align: center;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}
.uberschrieft {
    margin-top: 60px;
    color: #00eaff;
    text-shadow: 0 0 18px #00eaff88;
}
.login-form {
    background: #101c2c;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 32px #00eaff33;
    display: inline-block;
    margin-top: 40px;
}
.login-form input {
    display: block;
    width: 220px;
    margin: 16px auto;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #00eaff;
    background: #181f2a;
    color: #00eaff;
    font-size: 16px;
}
.button {
    padding: 12px 32px;
    font-size: 18px;
    color: #00eaff;
    background: #181f2a;
    border: 2px solid #00eaff;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.button:hover {
    background: #00eaff;
    color: #101c2c;
    box-shadow: 0 0 24px #00eaffcc;
}

.footer-note {
    margin-top: 24px;
    color: #00eaffaa;
    font-size: 15px;
    text-align: center;
}
.footer-note a {
    color: #00eaff;
    text-decoration: underline;
}
.footer-note a:hover {
    color: #1dd0ff;
}
