/* Der komplette Login-Block oben rechts fixiert */
.login-wrapper {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
}

/* Jede Zeile hat ein Feld + Button oder Link */
.form-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

/* Eingabefelder */
.login-form input[type="text"],
.login-form input[type="password"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    color: #000;
    min-width: 180px;
    flex: 1;
}

/* Login-Button */
.login-form input[type="submit"] {
    padding: 8px 24px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    min-width: 100px;
}

.login-form input[type="submit"]:hover {
    background-color: #45a049;
}

/* Link: Hier registrieren */
.register-link a {
    font-size: 13px;
    color: #007BFF;
    text-decoration: none;
    white-space: nowrap;
}

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