/* Form Wrapper */
#fmp-form *{
    font-family: "Inter", Sans-serif;
}
#cfmp-form {
    width: 100%;
    /* max-width: 420px; */
    margin: 0 auto;
    font-family: Arial, sans-serif;
    padding: 10px;
}

/* Heading */
.cfmp-heading h2 {
    font-size: 20px;
    font-weight: 600;
    font-weight: 600;
    color: #06295c;
    margin-bottom: 28px;
    font-family: "Inter", Sans-serif;
    text-align: center;
}

/* Paragraph spacing */
#cfmp-form p {
    margin-bottom: 16px;
}
#child_age_sport_too {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 16px;
}

#child_age_sport_too p {
    flex: 1 1 calc(50% - 15px);
    margin: 0;
    position: relative;
}
/* Input + Select */
#cfmp-form input,
#cfmp-form select {
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    background: #f3f3f3;
    border-radius: 6px;
    padding: 0 16px;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
    transition: 0.3s ease;
}

/* Placeholder */
#cfmp-form input::placeholder {
    color: #9d9d9d;
}

/* Select Styling */
#cfmp-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #9d9d9d;
    cursor: pointer;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
    padding-right: 45px;
}

/* Focus */
#cfmp-form input:focus,
#cfmp-form select:focus {
    background: #fff;
    border: 1px solid #06295c;
}

/* Submit Button */
#cfmp-form button {
    width: 100%;
    height: 52px;
    background: #06295c;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Hover */
#cfmp-form button:hover {
    background: #041c42;
}

/* Success Message */
.cfmp-response {
    margin-top: 15px;
}

.cfmp-success {
    color: green;
    font-size: 14px;
}

/* Error Message */
.cfmp-error {
    color: red;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}
.cfmp-error {
    display: block;
    color: #e10000;
    font-size: 13px;
    margin-top: 6px;
    padding-left: 2px;
    font-weight: 500;
}

.cfmp-success {
    color: green;
    font-size: 14px;
    margin-top: 15px;
}
.cfmp-filter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.cfmp-filter-form input {
    min-width: 220px;
}

#cfmp-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.cfmp-btn-loading {
    pointer-events: none;
}
/* Responsive */
@media (max-width: 767px) {

    #cfmp-form {
        max-width: 100%;
    }

    .cfmp-heading h2 {
        font-size: 20px;
        line-height: 28px;
    }

    #cfmp-form input,
    #cfmp-form select {
        height: 48px;
        font-size: 15px;
    }

    #cfmp-form button {
        height: 50px;
        font-size: 17px;
    }
}