/* ================================
   SRSF Donation – Final Merged CSS
   ================================ */

.srsf-donation-box {
    background: #ffffff;
    padding: 40px;
    max-width: 520px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    font-family: inherit;
}

/* Title */
.srsf-donation-box h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
}

.srsf-donation-box h2 span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    margin-top: 8px;
    color: #555;
}

/* Field Wrapper */
.srsf-field {
    position: relative;
    margin-bottom: 20px;
}

/* Labels */
.srsf-label,
.srsf-field label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Currency Box */
.srsf-currency {
    position: absolute;
   /* left: 0;
    top: 0;
    height: 100%;*/
    background: #15689e;
    color: #fff;
    padding: 11px 12px;
    border-radius: 6px 0 0 6px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

/* Amount Select Padding */
.srsf-amount-wrap select,
.srsf-amount select {
    padding-left: 50px;
}

/* Inputs & Selects */
.srsf-donation-box select,
.srsf-donation-box input {
    width: 100%;
    /*padding: 14px;*/
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 16px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.srsf-donation-box select:focus,
.srsf-donation-box input:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 0 2px rgba(51,51,51,0.08);
}

/* Other Amount Input */
.srsf-donation-box input[name="other_amount"] {
    margin-top: 10px;
    display: none;
}

/* Button */
.srsf-btn {
    background: #00923f;
    color: #fff;
    border: none;
    padding: 16px 42px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.15s ease;
}

.srsf-btn:hover {
    background: #fbc30e;
    transform: translateY(-1px);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .srsf-donation-box {
        padding: 25px;
    }

    .srsf-donation-box h2 {
        font-size: 22px;
    }
}
