/* Registration Form Styles */
.registration-form-wrapper {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 2rem auto;
    border-top: 5px solid var(--color-catfish-gold);
}

.registration-form-wrapper h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-river-navy);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-col {
    flex: 1;
    min-width: 250px;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--color-text-main);
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-body);
}

.form-control:focus {
    border-color: var(--color-swamp-olive);
    outline: none;
    box-shadow: 0 0 0 2px rgba(74, 93, 35, 0.2);
}

.fees-section {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--color-swamp-olive);
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.fee-item label {
    cursor: pointer;
}

.series-titles-section {
    margin-top: 2rem;
    border-top: 1px dashed #ccc;
    padding-top: 2rem;
}

.series-titles-section h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--color-river-navy);
}

.total-due-section {
    margin-top: 2rem;
    text-align: right;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-swamp-olive);
}

.signature-section {
    margin-top: 2rem;
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.submit-btn-wrapper {
    margin-top: 2rem;
    text-align: center;
}

.btn-submit {
    background-color: var(--color-river-navy);
    color: #fff;
    font-size: 1.2rem;
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--color-swamp-olive);
}

/* CF7 Form Structure Overrides */
.hookem-cf7-wrapper .form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.hookem-cf7-wrapper h3 {
    color: var(--color-river-navy);
    margin-bottom: 15px;
}

.hookem-cf7-wrapper .wpcf7-list-item {
    display: block;
    margin-left: 0;
    margin-bottom: 15px;
}

.hookem-cf7-wrapper .wpcf7-list-item label {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--color-text-main);
}

.hookem-cf7-wrapper .wpcf7-list-item input[type="radio"],
.hookem-cf7-wrapper .wpcf7-list-item input[type="checkbox"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    transform: scale(1.2);
    accent-color: var(--color-swamp-olive);
    flex-shrink: 0;
}

.hookem-cf7-wrapper .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

@media (max-width: 768px) {
    .registration-form-wrapper {
        padding: 1.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-col {
        width: 100%;
        margin-bottom: 1.5rem;
    }
}