body {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f2f5;
    font-family: Arial, sans-serif;
}

.login-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 300px;
}

h2 {
    margin: 0 0 15px;
    text-align: center;
}

input {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    padding: 10px;
    background: #1a73e8;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #1557b0;
}

.auth-links {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.auth-links a {
    color: #1a73e8;
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}