body {
    font-family: "Inter", sans-serif;
    background: #f1f3f4;
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    box-sizing: border-box;
}

h2 {
    font-weight: 600;
    margin-bottom: 1rem;
}

input,
button {
    width: 100%;
    box-sizing: border-box;
}

input {
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

button {
    background: #1a73e8;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px;
    font-weight: 600;
    cursor: pointer;
}

button:hover {
    background: #1560c2;
}

.error {
    color: red;
    font-size: 0.9rem;
    margin-top: 10px;
}