/* Grundaufbau */
body {
    background-color: #0e1621;
    color: #ffffff;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-box {
    background-color: #17212b;
    padding: 30px;
    border-radius: 12px;
    width: 300px;
    text-align: center;
}

h1 { font-size: 20px; margin-bottom: 20px; }

/* Inputs clean machen */
input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background-color: #0e1621;
    border: 1px solid #2b5278;
    color: white;
    border-radius: 8px;
    box-sizing: border-box;
    outline: none;
}

/* Button komplett resetten */
.btn {
    all: unset; /* Löscht JEDEN Browser-Standard */
    display: block;
    width: calc(100% - 24px); /* Padding berücksichtigen */
    padding: 12px;
    background-color: #2b5278;
    color: white;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
}

.btn:hover {
    background-color: #356795;
}

/* Registrieren-Link als cleaner Text */
.link {
    display: block;
    margin-top: 15px;
    color: #6c9fd0;
    text-decoration: none;
    font-size: 13px;
}

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