    /* ===== GLOBAL BACKGROUND ===== */
        body {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 40px 0;
            display: flex;
            align-items: center;
        }

        /* ===== FORM CONTAINER ===== */
        .form-container {
            max-width: 760px;
            margin: 0 auto;
            background: #ffffff;
            padding: 35px 40px;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease;
        }

        .form-container:hover {
            transform: translateY(-5px);
        }

        /* ===== TITLE ===== */
        .form-title {
            font-weight: 700;
            margin-bottom: 28px;
            color: #2d3748;
            border-bottom: 4px solid #667eea;
            padding-bottom: 15px;
            font-size: 28px;
            letter-spacing: -0.5px;
        }

        .form-title i {
            color: #667eea;
            margin-right: 10px;
        }

        /* ===== REQUIRED STAR ===== */
        .required-star {
            color: #e53e3e;
            margin-left: 3px;
            font-weight: 700;
        }

        /* ===== FIELD HINT ===== */
        .field-hint {
            font-size: 0.8rem;
            color: #718096;
            margin-top: 4px;
        }

        /* ===== FORM LABELS ===== */
        .form-label {
            font-weight: 600;
            color: #2d3748;
            font-size: 0.95rem;
        }

        /* ===== INPUT FIELDS ===== */
        .form-control, .form-select {
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 12px 16px;
            transition: all 0.3s ease;
            background-color: #f7fafc;
        }

        .form-control:focus, .form-select:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
            background-color: #ffffff;
        }

        .form-control:hover, .form-select:hover {
            border-color: #a0aec0;
        }

        /* ===== TEXTAREA ===== */
        textarea.form-control {
            resize: vertical;
            min-height: 70px;
        }

        /* ===== SUBMIT BUTTON ===== */
        .btn-submit {
            padding: 12px 40px;
            font-weight: 600;
            letter-spacing: 0.5px;
            border-radius: 12px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
            background: linear-gradient(135deg, #5a6fd6 0%, #6a3f8f 100%);
        }

        .btn-submit:active {
            transform: translateY(0px);
        }

        /* ===== RESET BUTTON ===== */
        .btn-outline-secondary {
            border-radius: 12px;
            padding: 12px 30px;
            border: 2px solid #e2e8f0;
            color: #4a5568;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-outline-secondary:hover {
            background-color: #f7fafc;
            border-color: #a0aec0;
            transform: translateY(-2px);
        }

        /* ===== ALERT STYLES ===== */
        .alert {
            border-radius: 16px;
            border: none;
            padding: 16px 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .alert-success {
            background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
            border-left: 5px solid #48bb78;
        }

        .alert-danger {
            background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
            border-left: 5px solid #fc8181;
        }

        .alert-info-custom {
            background: linear-gradient(135deg, #ebf8ff 0%, #bee3f8 100%);
            border-left: 5px solid #4299e1;
            border-radius: 16px;
        }

        /* ===== SUBMITTED DATA BADGES ===== */
        .badge-data {
            background: white !important;
            color: #2d3748 !important;
            border: 1px solid #e2e8f0;
            padding: 8px 14px !important;
            border-radius: 30px !important;
            font-weight: 500;
            font-size: 0.85rem !important;
            box-shadow: 0 2px 4px rgba(0,0,0,0.02);
            display: inline-block;
            margin: 4px;
        }

        .badge-data strong {
            color: #4a5568;
        }

        /* ===== FOOTER NOTE ===== */
        .footer-note {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #718096;
            text-align: center;
            border-top: 1px solid #e2e8f0;
            padding-top: 18px;
        }

        /* ===== INFO BOX ===== */
        .info-box {
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
            border: 2px dashed #cbd5e0;
            border-radius: 16px;
            padding: 18px 22px;
            margin-top: 25px;
            font-size: 0.9rem;
            color: #4a5568;
        }

        .info-box strong {
            color: #2d3748;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 576px) {
            .form-container {
                padding: 20px 18px;
                margin: 0 12px;
            }
            .form-title {
                font-size: 22px;
            }
            .btn-submit, .btn-outline-secondary {
                width: 100%;
                margin-bottom: 10px;
            }
            .d-flex.gap-3 {
                flex-direction: column;
            }
        }