body {
    background-color: #f0f4f8; /* Light grey background */
}

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

.auth-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 450px;
}

.auth-card .form-control {
    padding: 12px 15px;
    border-radius: 8px;
}

.auth-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: text-decoration 0.2s;
}

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

.divider {
    text-align: center;
    position: relative;
    color: #adb5bd;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: #dee2e6;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

/* Status Page */
.status-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 600px;
}

.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}
