body {
    background: #f4f5f7;
    min-height: 100vh;
}

.login-wrapper {
    min-height: calc(100vh - 3rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 100%;
    max-width: 440px;
    border: 0;
    border-radius: 18px;
}

.dashboard-card {
    min-height: 190px;
    padding: 26px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.active-card {
    background: #ffffff;
    color: #212529;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.active-card:hover {
    color: #212529;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.13);
}

.disabled-card {
    background: #e4e6e9;
    color: #888888;
    cursor: not-allowed;
    opacity: 0.7;
}

.dashboard-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
}

.dashboard-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 7px;
}

.dashboard-description {
    font-size: 0.95rem;
}
