* { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            font-family: 'Inter', sans-serif;
            background: #f5f7fa;
            color: #1a1a2e;
        }

        .form-page {
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 48px 16px;
        }

        .form-card {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.08);
            width: 100%;
            max-width: 700px;
            padding: 40px;
			border: 2px solid #e9e9e9;
        }

        .form-card h2 {
            font-size: 28px;
            font-weight: 700;
            color: #1873af;
            margin-bottom: 6px;
            text-align: center;
        }

        .form-card .subtitle {
            text-align: center;
            font-size: 13px;
            color: #888;
            margin-bottom: 32px;
        }

        .divider {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: #aaa;
            margin: 24px 0 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .divider::before, .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #eee;
        }

        .field {
            margin-bottom: 16px;
        }

        .field label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: #444;
            margin-bottom: 6px;
        }

        .field input,
        .field textarea {
            width: 100%;
            border: 1.5px solid #e0e0e0;
            border-radius: 8px;
            padding: 11px 14px;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            color: #1a1a2e;
            background: #fafafa;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .field input:focus,
        .field textarea:focus {
            border-color: #1873af;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(24,115,175,0.08);
        }

        .field textarea {
            resize: vertical;
            min-height: 90px;
        }

        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        @media (max-width: 480px) {
            .two-col { grid-template-columns: 1fr; }
            .form-card { padding: 28px 20px; }
        }

        /* CAPTCHA */
        .captcha-box {
            background: #f5f9fc;
            border: 1.5px solid #d0e4f0;
            border-radius: 10px;
            padding: 16px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .captcha-code {
            font-size: 22px;
            font-weight: 700;
            letter-spacing: 5px;
            color: #1873af;
            background: white;
            border: 1.5px dashed #b0cfe0;
            border-radius: 8px;
            padding: 8px 16px;
            user-select: none;
            flex-shrink: 0;
            /* subtle visual noise */
            text-shadow: 1px 1px 0 rgba(24,115,175,0.15);
            font-style: italic;
        }

        .captcha-input {
            flex: 1;
        }

        .captcha-input input {
            width: 100%;
            border: 1.5px solid #e0e0e0;
            border-radius: 8px;
            padding: 11px 14px;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 3px;
            text-align: center;
            outline: none;
            background: #fff;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .captcha-input input:focus {
            border-color: #1873af;
            box-shadow: 0 0 0 3px rgba(24,115,175,0.08);
        }

        .captcha-hint {
            font-size: 11px;
            color: #aaa;
            text-align: center;
            margin-top: 6px;
        }

        /* SUBMIT */
        .btn-submit {
            width: 100%;
            background: #1873af;
            color: white;
            border: none;
            border-radius: 8px;
            padding: 13px;
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            margin-top: 4px;
        }

        .btn-submit:hover {
            background: #125d8c;
            transform: translateY(-1px);
        }

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