body.auth-page {
    font-family: 'Arimo', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f0f0f0;
    margin: 0;
}

.auth-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 320px;
}

.auth-box h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #333;
}

.auth-box input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
}

.auth-box input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.auth-box button {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.auth-box button.btn-primary {
    background: #007bff;
    color: white;
}

.auth-box button.btn-primary:hover {
    background: #0056b3;
}

.auth-box button.btn-success {
    background: #28a745;
    color: white;
}

.auth-box button.btn-success:hover {
    background: #218838;
}

.auth-box .error {
    color: #dc3545;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
}

.auth-box .auth-footer {
    text-align: center;
    font-size: 0.85rem;
    margin-top: 1.5rem;
    color: #666;
}

.auth-box .auth-footer a {
    color: #007bff;
    text-decoration: none;
}

.auth-box .auth-footer a:hover {
    text-decoration: underline;
}
