/*
 * Table of Contents
 * 1. Base Form Styling
 * 2. Section Headings
 * 3. Agreement Field
 * 4. Amount Buttons
 * 5. Range Slider
 * 6. Additional Form Styling
 * 7. Mobile Responsive Styles
 */
/* === Base Form Styling === */
/* Base form styling with smaller text */
.sepafy-form {
    font-size: 14px;
}

.sepafy-form input, 
.sepafy-form label, 
.sepafy-form p, 
.sepafy-form span,
.sepafy-form button {
    font-size: 14px;
}

.sepafy-header-image {
    width: 100%;
    margin-bottom: 20px;
}

/* === Section Headings === */
/* Section heading styling */
.sepafy-form-section h3 {
    color: #2c3e50;
    font-size: 1.2em;
    font-weight: 600;
    margin: 25px 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #4CAF50;
    position: relative;
}

.sepafy-form-section h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #2c3e50;
}

.sepafy-form-section:first-of-type h3 {
    margin-top: 15px;
}

/* === Form Header === */
.sepafy-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.sepafy-form-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-left: 15px;
}

.sepafy-form-header h3 {
    margin-right: 15px;
    flex: 1;
    margin-bottom: 0;
}

/* === Agreement Field === */
.sepafy-agreement-field {
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.sepafy-agreement-field input[type="checkbox"] {
    margin-top: 3px;
}

/* === Amount Buttons === */
.sepafy-amount-buttons {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sepafy-amount-btn {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: bold;
}

.sepafy-amount-btn:hover {
    background-color: #e5e5e5;
}

.sepafy-amount-btn.active {
    background-color: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

/* === Range Slider === */
input[type="range"] {
    -webkit-appearance: none;
    height: 10px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
}

/* === Additional Form Styling === */
/* Additional form styling */
.sepafy-iban-field {
    display: flex;
    align-items: center;
}

.sepafy-iban-field label {
    min-width: 100px;
}

.sepafy-slider-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sepafy-slider-container input[type="range"] {
    width: 100%;
}

.sepafy-slider-labels {
    display: flex;
    justify-content: space-between;
}

.sepafy-amount-input-container {
    position: relative;
    flex: 1;
}

.sepafy-amount-currency {
    position: absolute;
    left: 10px;
    top: 10px;
    font-weight: bold;
}

.sepafy-amount-input-container input {
    padding-left: 25px;
    width: 100%;
}

/* === Mobile Responsive Styles === */
/* Mobile responsive styles */
@media (max-width: 768px) {
    .sepafy-form {
        font-size: 13px;
    }
    
    .sepafy-form-section h3 {
        font-size: 1.1em;
        margin: 20px 0 12px 0;
    }
    
    .sepafy-form-header h3 {
        font-size: 1.1em;
        margin-bottom: 0;
    }
    
    .sepafy-form-logo {
        height: 40px;
    }
    
    .sepafy-amount-buttons {
        gap: 5px;
    }
    
    .sepafy-slider-labels {
        font-size: 0.8em;
    }
    
    .sepafy-slider-container {
        margin-top: 5px;
    }
}
.sepafy-header-img{width:100%;height:auto;}
.sepafy-agreement-label{font-weight:600;display:inline-block;margin-left:5px;}
