.elementor-9 .elementor-element.elementor-element-28d2712{--display:flex;}/* Start custom CSS for html, class: .elementor-element-8211f7b *//*
 * Forminator Custom CSS for RSVP Page
 * This CSS targets common Forminator elements to apply custom styling.
 * Paste this directly into Forminator's "Appearance" or "Custom CSS" settings for your form.
 */

/* ==============================
   Form Container & Field Borders
   ============================== */

/* Apply border to the main form container (adjust .elementor-9 .elementor-element.elementor-element-8211f7b if needed) */
/* Forminator forms often wrap fields in a specific class,
   or you might want to apply the border to individual fields. */
.forminator-ui {
    border: 2px solid #8B4512; /* Border for the main form container */
    border-radius: 15px; /* Match the existing design's rounded corners */
    padding: 20px; /* Add some padding inside the bordered area */
    /* box-shadow removed as requested */
}

/* Style individual form fields (input, textarea, select) */
.forminator-ui input[type="text"],
.forminator-ui input[type="email"],
.forminator-ui input[type="tel"],
.forminator-ui textarea,
.forminator-ui select {
    border: 1px solid #8B4512; /* Border color for input fields */
    color: #8B4512; /* Text color inside the fields */
    padding: 10px 15px; /* Padding for better input feel */
    border-radius: 8px; /* Slightly rounded corners for fields */
    font-size: 20px; /* Set font size to 20px */
    font-family: 'Georgia', serif; /* Set font family to Georgia */
    width: 100%; /* Make fields full width */
    margin-bottom: 15px; /* Spacing between fields */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}

/* Style for focused fields */
.forminator-ui input[type="text"]:focus,
.forminator-ui input[type="email"]:focus,
.forminator-ui input[type="tel"]:focus,
.forminator-ui textarea:focus,
.forminator-ui select:focus {
    border-color: #A0522D; /* Darker border on focus */
    outline: none; /* Remove default outline */
    /* box-shadow removed as requested */
}

/* Style for labels (if you want to match the theme color) */
.forminator-ui .forminator-label {
    color: #A0522D; /* Darker brown for labels */
    font-weight: bold;
    margin-bottom: 5px;
    display: block; /* Make labels block level for better spacing */
    font-size: 20px; /* Set font size to 20px */
    font-family: 'Georgia', serif; /* Set font family to Georgia */
}

/* ==============================
   Submit Button Styling
   ============================== */

.forminator-ui .forminator-button {
    background-color: #8B4512; /* Solid background color for the button */
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease; /* Transition background-color */
    /* box-shadow removed as requested */
    width: auto; /* Allow button to size based on content */
    display: inline-block; /* For centering or side-by-side if needed */
    margin-top: 20px; /* Space from fields above */
}

.forminator-ui .forminator-button:hover {
    background-color: #A0522D; /* Slightly different hover color */
    transform: translateY(-2px);
    /* box-shadow removed as requested */
}

.forminator-ui .forminator-button:active {
    background-color: #6E3B0F; /* Darker shade for active state */
    transform: translateY(0);
    /* box-shadow removed as requested */
}

/* Specific styling for the submit button element itself, if different */
.forminator-ui .forminator-button[type="submit"] {
    /* Apply the same styles as above or override if needed */
}

/* ==============================
   Animation for RSVP (creative touch)
   ============================== */

/* Adding a subtle animation to the form on load */
.forminator-ui {
    animation: formLoadIn 0.8s ease-out forwards;
    opacity: 0; /* Start invisible */
    transform: translateY(20px); /* Start slightly below */
}

@keyframes formLoadIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bounce effect for form messages/validation */
.forminator-ui .forminator-response-message {
    animation: bounceIn 0.5s ease-out;
}

@keyframes bounceIn {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); }
}/* End custom CSS */