  /* Main Container */
        .rgst-page-wrapper {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            min-height: calc(100vh - 200px);
            display: flex;
            align-items: center;
        }

        .rgst-content-box {
            max-width: 500px;
            width: 90%;
            margin: 0 auto;
        }

        /* Hero / Header Section */
        .rgst-page-hero {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .rgst-hero-h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color, #1a3a5f);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .rgst-hero-subtext {
            font-size: 1.1rem;
            color: var(--gray, #64748b);
            margin-bottom: 1rem;
            line-height: 1.6;
            max-width: 90%;
            margin-left: auto;
            margin-right: auto;
        }

        .rgst-trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent-secondary, #16a34a);
            font-weight: 600;
            font-size: 0.95rem;
            background-color: rgba(22, 163, 74, 0.08);
            padding: 10px 22px;
            border-radius: 50px;
            border: 1px solid rgba(22, 163, 74, 0.2);
            margin-top: 0.5rem;
        }

        .rgst-trust-badge i {
            font-size: 1.1em;
        }

        /* Form Card */
        .rgst-form-card {
            background: white;
            border-radius: var(--radius, 12px);
            padding: 2.5rem;
            box-shadow: var(--shadow, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
            border: 1px solid var(--border-color, #e2e8f0);
            margin-bottom: 2rem;
        }

        .rgst-field-note {
            font-size: 0.95rem;
            color: var(--gray, #64748b);
            margin-bottom: 1.5rem;
            padding: 14px 18px;
            background-color: rgba(230, 162, 60, 0.05);
            border-radius: 8px;
            border-left: 3px solid var(--accent-color, #e6a23c);
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .rgst-field-note i {
            color: var(--accent-color, #e6a23c);
            font-size: 1.1em;
            margin-top: 2px;
        }

        /* Form Fields & Groups */
        .rgst-form-group {
            margin-bottom: 1.5rem;
            position: relative;
        }

        .rgst-form-label {
            display: block;
            font-weight: 600;
            color: var(--primary-color, #1a3a5f);
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .rgst-form-input {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid var(--border-color, #e2e8f0);
            border-radius: var(--radius, 8px);
            font-size: 1rem;
            transition: var(--transition, all 0.3s ease);
            background-color: white;
            color: var(--text-color, #333);
        }

        .rgst-form-input:focus {
            outline: none;
            border-color: var(--accent-color, #e6a23c);
            box-shadow: 0 0 0 3px rgba(230, 162, 60, 0.15);
        }

        .rgst-input-with-icon {
            position: relative;
        }

        .rgst-input-icon {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray, #64748b);
            font-size: 1.1em;
        }

        .rgst-password-toggle {
            cursor: pointer;
            color: var(--accent-color, #e6a23c);
        }

        .rgst-password-toggle:hover {
            color: var(--secondary-color, #2a5a8c);
        }

        /* Password strength indicator */
        .rgst-password-strength {
            margin-top: 8px;
            display: flex;
            gap: 4px;
            height: 4px;
        }

        .rgst-strength-bar {
            flex: 1;
            background-color: var(--light-gray, #e2e8f0);
            border-radius: 2px;
            transition: background-color 0.3s ease;
        }

        /* Checkbox Styling */
        .rgst-checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 1.5rem;
            padding: 12px 0;
        }

        .rgst-checkbox-input {
            margin-top: 4px;
            flex-shrink: 0;
            accent-color: var(--accent-secondary, #16a34a);
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .rgst-checkbox-label {
            font-size: 0.95rem;
            color: var(--text-color, #333);
            line-height: 1.5;
        }

        .rgst-checkbox-label a {
            color: var(--accent-color, #e6a23c);
            text-decoration: underline;
            font-weight: 500;
        }

        .rgst-checkbox-label a:hover {
            color: var(--secondary-color, #2a5a8c);
        }

        /* Honeypot Field (Hidden) */
        .rgst-honeypot {
            opacity: 0;
            position: absolute;
            left: -10000px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }

        /* Optional Preferences Section */
        .rgst-optional-section {
            margin-top: 2.5rem;
            border-top: 1px solid var(--border-color, #e2e8f0);
            padding-top: 1.5rem;
        }

        .rgst-section-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            background: none;
            border: none;
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary-color, #1a3a5f);
            padding: 0.75rem 0;
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .rgst-section-toggle:hover {
            color: var(--secondary-color, #2a5a8c);
        }

        .rgst-section-toggle i {
            transition: transform 0.3s ease;
            color: var(--accent-color, #e6a23c);
        }

        .rgst-section-toggle.active i {
            transform: rotate(180deg);
        }

        .rgst-optional-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
        }

        .rgst-optional-content.open {
            max-height: 1000px;
            padding-top: 1.5rem;
        }

        /* Submit Button */
        .rgst-submit-btn {
            width: 100%;
            padding: 16px 24px;
            background: linear-gradient(135deg, var(--primary-color, #1a3a5f) 0%, var(--secondary-color, #2a5a8c) 100%);
            color: white;
            border: none;
            border-radius: var(--radius, 8px);
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition, all 0.3s ease);
            margin-top: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .rgst-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(26, 58, 95, 0.25);
        }

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

        .rgst-submit-btn i {
            font-size: 1.2em;
        }

        /* Footer Links */
        .rgst-form-footer {
            text-align: center;
            font-size: 1rem;
            color: var(--gray, #64748b);
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color, #e2e8f0);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .rgst-form-footer a {
            color: var(--accent-color, #e6a23c);
            font-weight: 600;
            text-decoration: none;
        }

        .rgst-form-footer a:hover {
            text-decoration: underline;
        }

        /* Confirmation Message (Hidden initially) */
        .rgst-confirmation-message {
            display: none;
            text-align: center;
            padding: 3rem;
            background: white;
            border-radius: var(--radius, 12px);
            box-shadow: var(--shadow, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
            animation: fadeIn 0.5s ease;
        }

        .rgst-confirmation-title {
            color: var(--accent-secondary, #16a34a);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .rgst-confirmation-text {
            color: var(--gray, #64748b);
            margin-bottom: 1.5rem;
            line-height: 1.6;
            max-width: 90%;
            margin-left: auto;
            margin-right: auto;
        }

        .rgst-spam-note {
            font-size: 0.95rem;
            color: var(--gray, #64748b);
            background-color: rgba(230, 162, 60, 0.05);
            padding: 14px 18px;
            border-radius: 8px;
            border-left: 3px solid var(--accent-color, #e6a23c);
            margin-top: 2rem;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            text-align: left;
        }

        .rgst-spam-note i {
            color: var(--accent-color, #e6a23c);
            font-size: 1.2em;
            margin-top: 2px;
        }

        /* Form validation states */
        .rgst-form-input.error {
            border-color: #ff4d4f;
            background-color: rgba(255, 77, 79, 0.03);
        }

        .rgst-error-message {
            color: #ff4d4f;
            font-size: 0.85rem;
            margin-top: 5px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .rgst-form-input.success {
            border-color: var(--accent-secondary, #16a34a);
            background-color: rgba(22, 163, 74, 0.03);
        }

        /* Success animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Loading state */
        .rgst-submit-btn.loading {
            opacity: 0.8;
            cursor: not-allowed;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .rgst-page-wrapper {
                padding: 40px 0;
            }
            
            .rgst-form-card {
                padding: 2rem;
            }
            
            .rgst-hero-h1 {
                font-size: 2rem;
            }
            
            .rgst-hero-subtext {
                font-size: 1rem;
            }
            
            .rgst-confirmation-message {
                padding: 2rem;
            }
        }

        @media (max-width: 480px) {
            .rgst-form-card {
                padding: 1.5rem;
            }
            
            .rgst-hero-h1 {
                font-size: 1.8rem;
            }
            
            .rgst-content-box {
                width: 95%;
            }
            
            .rgst-field-note,
            .rgst-spam-note {
                padding: 12px 14px;
                font-size: 0.9rem;
            }
        }