body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    backdrop-filter: blur(15px);
    background: rgba(255,255,255,0.15);
    padding: 40px;
    width: 360px;
    border-radius: 15px;
    color: white;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

h2 {
    text-align: center;
}

input {
    width: 100%;
    padding: 12px;
    margin: 12px 0;
    border-radius: 8px;
    border: none;
}

button {
    width: 100%;
    padding: 12px;
    background: white;
    color: #333;
    font-weight: bold;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

button:hover {
    opacity: 0.9;
}

