:root {
    --mohup-primary: #2d7c5c;
    --mohup-secondary: #1a5940;
    --mohup-light: #f5f9f7;
    --mohup-accent: #3d9970;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f9f7 0%, #e8f4f0 100%);
    min-height: 100vh;
}

.navbar {
    background: linear-gradient(90deg, var(--mohup-primary) 0%, var(--mohup-secondary) 100%) !important;
    box-shadow: 0 2px 10px rgba(45, 124, 92, 0.15);
    padding: 1rem 0;
}

.navbar-brand {
    color: white !important;
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

    .navbar-brand:hover {
        color: #e8f4f0 !important;
    }

.content-wrapper {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

footer {
    background: var(--mohup-secondary);
    color: #e8f4f0;
    padding: 2rem 0;
    margin-top: 3rem;
}

    footer a {
        color: #a8d5c3;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        footer a:hover {
            color: white;
        }
.login-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(45, 124, 92, 0.12);
    padding: 3rem;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid rgba(45, 124, 92, 0.1);
}

.logo-section {
    text-align: center;
    margin-bottom: 2.5rem;
}

.logo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d7c5c 0%, #3d9970 100%);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(45, 124, 92, 0.25);
}

.page-title {
    color: #1a5940;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: #5a8874;
    font-size: 1rem;
    margin-bottom: 0;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #2d7c5c, transparent);
    margin: 2rem 0;
}

.login-button {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #2d7c5c 0%, #3d9970 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 124, 92, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

    .login-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s ease;
    }

    .login-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(45, 124, 92, 0.4);
        color: white;
    }

        .login-button:hover::before {
            left: 100%;
        }

.login-button-icon {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.features-list {
    margin-top: 2rem;
    padding: 0;
    list-style: none;
}

    .features-list li {
        padding: 0.75rem 0;
        color: #5a8874;
        display: flex;
        align-items: center;
        font-size: 0.95rem;
    }

        .features-list li::before {
            content: '?';
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            background: #e8f4f0;
            color: #2d7c5c;
            border-radius: 50%;
            margin-right: 0.75rem;
            font-weight: bold;
            flex-shrink: 0;
        }

@media (max-width: 576px) {
    .login-card {
        padding: 2rem 1.5rem;
    }

    .page-title {
        font-size: 1.5rem;
    }
}