/* Overall Container Styling */
#subscribe-form {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    /* font-family: Arial, sans-serif; */
    color: #333;
    font-size:0.9rem;
}

/* Section Headings */
#subscribe-form h2 {
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 20px;
    color: #444;
}

/* Label Styling */
#subscribe-form label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

/* Input, Select, and Textarea Styling */
#subscribe-form input[type="text"],
#subscribe-form input[type="email"],
#subscribe-form input[type="password"],
#subscribe-form input[type="tel"],
#subscribe-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

/* Focus State */
#subscribe-form input:focus,
#subscribe-form select:focus {
    border-color: #66afe9;
    outline: none;
}

/* Flex Layouts for Input Groups */
#subscribe-form .input-pair,
#subscribe-form .input-triple,
#subscribe-form .input-quad {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    margin-top: 15px;
}

#subscribe-form .input-pair > div {
    flex: 1 1 45%;
    min-width: 250px;
}

#subscribe-form .input-triple > div {
    flex: 1 1 30%;
    min-width: 250px;
}

#subscribe-form .input-quad > div {
    flex: 1 1 22%;
    min-width: 250px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #subscribe-form .input-pair > div,
    #subscribe-form .input-triple > div,
    #subscribe-form .input-quad > div {
        flex: 1 1 100%;
    }
}

/* Paragraphs */
#subscribe-form p {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Checkbox Styling */
#subscribe-form input[type="checkbox"] {
    margin-right: 5px;
}

/* Image (e.g., Paystack Logo) Styling */
#subscribe-form img {
    max-width: 150px;
    margin-bottom: 10px;
}

/* Required Fields & Notes Styling */
#subscribe-form .required-fields-message,
#subscribe-form small {
    color: rgb(30, 105, 155);
    font-size: 0.7em;
}

/* Complete Subscription Button Styling */


#subscribe-form a:hover {
    background: #218838;
}

/* Additional Spacing for Final Steps */
#subscribe-form > div:last-child {
    margin-top: 20px;
}


/* Payment Method Section Container */
.payment-method-section {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    /* font-family: Arial, sans-serif; */
    color: #333;
}

/* Headings */
.payment-method-section h2 {
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 15px;
    color: #444;
}

/* Labels & Selects within Payment Section */
.payment-method-section label {
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
}

.payment-dropdown select,
.banking-details select,
.banking-details input[type="text"],
.paystack-section input[type="text"],
.paystack-section select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

/* Banking Details & Paystack Section Cards */
.banking-details,
.paystack-section {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-top: 15px;
}

/* Paystack Logo */
.paystack-logo img {
    max-width: 150px;
    display: block;
    margin-bottom: 15px;
}

/* Terms Section */
.terms-section {
    margin-top: 20px;
}

.terms-section label {
    color: red;
    font-weight: bold;
}

/* Final Messages & Subscription Button */
.final-messages {
    margin-top: 15px;
    font-size: 0.95em;
}

.complete-button {
    text-align: center;
    margin-top: 20px;
}

.complete-button a.btn-complete {
    display: inline-block;
    background: #28a745;
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.complete-button a.btn-complete:hover {
    background: #218838;
}


/* Common Form Section Styles */
.form-section {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    /* font-family: Arial, sans-serif; */
    color: #333;
}

.form-section h2 {
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 15px;
    color: #444;
}

/* You can add specific tweaks for each section if needed */
.user-details-section { }
.company-details-section { }
.address-details-section { }
.industry-details-section { }
.payment-method-section { }  /* Already defined earlier */


.input-error {
    border: 2px solid #dc3545 !important;
    background-color: #ffe6e6;
}

.input-error-message {
    color: #dc3545;
    font-size: 0.85em;
    margin-top: 2px;
}