/* Dashboard style */
.card h5 {
    font-size: 1rem;
    font-weight: 500;
}
.card h2 {
    font-size: 1.8rem;
    font-weight: 700;
}
.card {
    border: none;
    border-radius: 1rem;
}
.sidebar {
    background-color: #e74c3c;
    min-height: 100vh;
    width: 240px !important; 
}
.sidebar .nav-link {
    color: white;
    margin-bottom: 0.5rem;
    padding: 0.75rem;
    display: block;
    border-radius: 0.5rem;
}
.sidebar .nav-link.active, .sidebar .nav-link:hover {
    background-color: #c0392b;
    color: white;
}
/* Login page style */
body, html {
    height: 100%;
}

.login-container {
    min-height: 100vh;
    display: flex;
}

.login-left {
    background-image: url('/images/login-bg.jpeg');
    background-size: cover;
    background-position: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-left h1 {
    font-size: 48px;
    color: #dc3545;
}

.login-right {
    flex: 1;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container {
    width: 100%;
    max-width: 400px;
}