body{
    background-color: #f6f8fb;
}
.bg-left{
    background-color: #11AFAD;
}

.bg-clinik{
    background-color: #f6f8fb;
}

@media (max-width: 992px) {
.bg-left {
    display: none !important;
}
}

/* Center form vertically and horizontally */
.login-container {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #f8f9fc;
}

.login-card {
width: 100%;
max-width: 420px;
background: #fff;
border-radius: 1rem;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
padding: 2rem;
}

.btn-primary-2 {
background-color: #4e73df;
color: #fff;
}
.btn-primary-2:hover {
background-color: #2e59d9;
}

/*  */
.dashboard-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.dashboard-stats .stat {
    flex: 1 1 30%;
    min-width: 200px;
    background-color: #f6f8fb;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
}
.dashboard-stats .stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.dashboard-stats .stat-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 0.25rem;
}
.dashboard-stats .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}
.dashboard-stats .stat-icon {
    font-size: 2rem;
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 1rem;
}
.stat-primary { color: #0d6efd; }
.stat-success { color: #198754; }
.stat-danger { color: #dc3545; }


