:root {
    --primary-color: #27AE60;
    --body-bg: #F8F9FA;
    --border-color: #E9ECEF;
    --border-radius: 12px;
}

body.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--body-bg);
}

.login-card {
    width: 100%;
    max-width: 420px;
    padding: 2rem;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.login-logo {
    max-width: 200px;
    margin-bottom: 1.5rem;
}