/**
 * Form Event Integration Styles
 */

/* Form wrapper */
.form-event-integration-wrapper {
    margin-top: 40px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

/* Form title */
#event_registration_title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    color: #2C518A;
}

/* FormAssembly container */
.event-registration-form {
    margin-bottom: 20px;
}

/* Iframe styling */
.event-registration-form iframe {
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    background-color: #fff;
}

/* Button styling - already defined in the plugin but adding here for completeness */
a.event_registration_button {
    display: inline-block;
    margin-top: 20px;
    padding: 20px 30px 22px 30px;
    background: #2C518A;
    color: #fff;
    text-transform: uppercase;
    border-radius: 30px;
    font-weight: 500;
    line-height: 1;
    transition: all 0.5s;
    text-decoration: none;
}

a.event_registration_button svg {
    color: #fff;
    fill: #fff;
    width: 16px;
    margin-left: 8px;
    top: 3px;
    position: relative;
    transition: all 0.5s;
}

a.event_registration_button:hover,
a.event_registration_button:focus {
    background: #FFDA52;
    color: #2C518A;
    text-decoration: none;
}

a.event_registration_button:hover svg,
a.event_registration_button:focus svg {
    fill: #2C518A;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-event-integration-wrapper {
        padding: 20px;
    }
    
    #event_registration_title {
        font-size: 20px;
    }
}

