body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login {
    background: #fff;
    padding: 30px;
    width: 350px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.login h2 {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 0;
}

.login input {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.login button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    box-sizing: border-box;
}

/* Disabled state */
.login button:disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
}

/* Enabled state */
.login button:not(:disabled) {
    background: #007bff;
    color: white;
}

.login button:not(:disabled):hover {
    background: #0056b3;
}

.login p {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 0;
}

.login a {
    color: #007bff;
    text-decoration: none;
}

.login a:hover {
    text-decoration: underline;
}

.errors {
    margin-bottom: 15px;
}

.error {
    background: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 14px;
}