/* General Form Styling */
.wbdfp-form-container {
    max-width: 100%;
    margin: auto;
    background: #fff;
    padding: 25px;
   /*  border-radius: 10px; */
  /*  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);*/
    font-family: Arial, sans-serif;
}

/* Form Groups */
.wbdfp-form-group {
    margin-bottom: 15px;
    text-align: left;
}

.wbdfp-form-group label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #333;
}

/* Input Fields */
.wbdfp-form-container input,
.wbdfp-form-container textarea {
    width: 100%;
    padding: 10px !important;
    border: 2px solid #ccc !important;
    border-radius: 6px !important;
    font-size: 16px;
    transition: all 0.3s;
}

.wbdfp-form-container input:focus,
.wbdfp-form-container textarea:focus {
    border-color: #28a745;
    outline: none;
}

/* Amount Selection Buttons */
.wbdfp-amount-options {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 15px;
    margin-top: 15px;
}

.wbdfp-amount-btn {
    padding: 10px 25px;
    border: 2px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    background: #f8f8f8;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
}

.wbdfp-amount-btn.active,
.wbdfp-amount-btn:hover {
    background: #28a745;
    color: #fff;
    border-color: #28a745;
}

/* Toggle Switch for 80G */
.wbdfp-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.wbdfp-toggle {
    position: relative;
    width: 50px;
    height: 25px;
    background: #ccc;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.wbdfp-toggle.active {
    background: #28a745;
}

.wbdfp-toggle::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 4px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}

.wbdfp-toggle.active::before {
    left: 26px;
}

/* Submit and Navigation Buttons */
.wbdfp-btn-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
#wbdfp-next-step-1.wbdfp-btn,#wbdfpconfirmpay.wbdfp-btn {
    
    width: 100%;
}

.wbdfp-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: 48%;
    text-align: center;
}

.wbdfp-btn-back {
    background: #6c757d;
    color: #fff;
}

.wbdfp-btn-back:hover {
    background: #545b62;
}

.wbdfp-btn-submit {
    background: #28a745;
    color: #fff;
}

.wbdfp-btn-submit:hover {
    background: #218838;
}


.wbdfp-form-group.totalContribution {
  background: #ffbe59;
  padding: 10px;
  text-align: center;
  font-size: 16px;
  border-radius: 5px;
  border: 2px solid #f6f6f6;
}
#wbdfp-selected-amount-step-2 {
  font-size: 23px;
}
@media screen and (max-width: 768px) {
    .wbdfp-form-container{
        padding:15px !important;
    }
}