 body {
            font-family: 'Figtree', sans-serif;
            background: linear-gradient(135deg, #e2f0d9, #f0f5f1);
            min-height: 100vh;
        }

        .navbar {
            background: #14532d;
        }

        .navbar-brand,
        .nav-link {
            color: white !important;
            font-weight: 500;
        }

        header {
            background: linear-gradient(135deg, #14532d, #198754);
            color: white;
            padding: 70px 15px;
            text-align: center;
        }

        header h1 {
            font-size: 2.2rem;
            font-weight: 700;
        }

        header p {
            font-size: 1.1rem;
        }

        .form-section {
            padding: 60px 5px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .card {
            border-radius: 20px;
            backdrop-filter: blur(15px);
            background: rgba(255, 255, 255, 0.7);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            padding: 30px;
            max-width: 700px;
            width: 100%;
            margin: -100px auto 0 auto;
        }

        .form-control:focus {
            border-color: #198754;
            box-shadow: 0 0 8px rgba(25, 135, 84, 0.5);
        }

        .btn-gradient {
            background: linear-gradient(135deg, #198754, #0f5132);
            color: white;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-gradient:hover {
            background: linear-gradient(135deg, #0f5132, #198754);
            transform: translateY(-2px);
        }

        .btn-gradient:focus {
            outline: 3px solid #ffc107;
            outline-offset: 2px;
        }

        footer {
            background: #14532d;
            color: white;
            padding: 30px 10px;
            text-align: center;
        }

        footer a {
            color: #ffc107;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        @media(max-width: 576px) {
            header h1 {
                font-size: 1.5rem;
            }

            header p {
                font-size: 0.9rem;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
            }
        }