.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

.auth-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    text-align: center;
}

.auth-logo {
    width: 160px;
    margin-bottom: 15px;
}

.auth-card h4 {
    font-weight: 600;
    margin-bottom: 20px;
}

.auth-card .form-control {
    border-radius: 10px;
    padding: 12px;
}

.auth-card .btn-primary {
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    background: #2563eb;
    border: none;
}

.auth-card .btn-primary:hover {
    background: #1d4ed8;
}

.auth-footer {
    margin-top: 15px;
    font-size: 14px;
}

.stat-card {
    background: white;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.2s ease-in-out;
}

.stat-card:hover {
    transform: translateY(-3px);
}

.stat-title {
    font-size: 14px;
    color: #6b7280;
}

.stat-value {
    font-size: 26px;
    font-weight: 700;
}

