        .form-container {
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 500px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 0;
        }

        .form-group {
            margin-bottom: 10px;
        }

        input, textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: #666;
        }

        input::placeholder, textarea::placeholder {
            color: #999;
        }

        textarea {
            resize: vertical;
            min-height: 100px;
        }

        button {
            width: 100%;
            padding: 15px;
            background-color: #000;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        button:hover {
            background-color: #333;
        }

        button:active {
            transform: translateY(1px);
        }
/* ===============================
ERROR STATE
================================ */
#salesforce-form input.error,
#salesforce-form textarea.error {
    border-color: #d63638;
    background-color: #fff5f5;
}

/* Placeholder color when error */
#salesforce-form input.error::placeholder,
#salesforce-form textarea.error::placeholder {
    color: #d63638;
    opacity: 1;
}


.thank-you-container {
            text-align: center;
        }

        .icon-wrapper {
            margin-bottom: 10px;
            margin-top: 10px;
            display: flex;
            justify-content: center;
        }

        .envelope {
            width: 100px;
            height: 80px;
            background: linear-gradient(to bottom, #e8eef5 50%, #dce4ed 50%);
            border-radius: 4px;
            position: relative;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .checkmark {
            background-color: #1a1a1a;
            color: white;
            width: 50px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            border-radius: 0 0 4px 4px;
            margin-top: -10px;
        }

        .thank-you-container h1 {
            font-size: 32px;
            color: #2d3748;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .subtitle {
            color: #718096;
            font-size: 16px;
            margin-bottom: 10px;
        }

        .message {
            color: #414b83;
            font-size: 14px;
            line-height: 1.6;
            font-weight: 700;
        }