/* Reset & Basis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

/* Hintergrund */
body {
    min-height: 100vh;
    background: linear-gradient(135deg, #1d2671, #c33764);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* Überschrift */
h1 {
    margin-bottom: 25px;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

/* Input */
.name {
    width: 280px;
    padding: 12px 15px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 1rem;
    margin-bottom: 15px;
    transition: box-shadow 0.2s ease;
}

.name:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

/* Button */
.login {
    width: 280px;
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    background: #ffffff;
    color: #333;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Hover & Active */
.login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.login:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
