* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.login-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    width: 100%;
    max-width: 380px;
    text-align: center;
}

h2 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

input {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    outline: none;
    transition: 0.3s;
}

input:focus {
    border-color: #4ecca3;
    background: rgba(255, 255, 255, 0.15);
}

button {
    width: 100%;
    padding: 12px;
    background: #4ecca3;
    border: none;
    border-radius: 10px;
    color: #1a1a2e;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #45b791;
    transform: translateY(-2px);
}

a {
    color: #4ecca3;
    text-decoration: none;
}

p {
    font-size: 0.9rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
}