
.form-container {
    flex: 1;
}
form#donation-form {
    margin-top: -6px;
}
.donate-now {
    color: #F15B43;
    font-size: 28px;
    font-weight: bold;
}

.para-1 {
    color: #383838;
    font-size: 24px;
    margin-bottom: 10px;
    font-family: Lato;
    font-weight: 400;
    line-height: 28.8px;
    margin: 10px;
    /* padding: 10px; */
}

/* .donation input{
    width: 100%;
    max-width: 93%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #364F75;
    margin-bottom: 10px;
} */




.active {
    background-color: #F15B43 !important;
    color: white !important;
}

.amount-btn {
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    margin-right: 5px;
    background-color: #F15B43;
    color: white;
}

.payment-option {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.payment-option button {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    text-align: left;
    cursor: pointer;
    background-color: white;
    width: 100%;
}

.payment-option .active {
    background-color: #F15B43;
    color: white;
}

.donate-button {
    background-color: #F15B43;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

.payment-method {
    max-width: 100%;
}

.donate-btn {
    background-color: #F15B43;
    color: white;
    border-radius: 16px;
    border: none;
    padding: 5px 10px;
    position: relative;
   /* left: 75.5%; */
    margin-top: 10px;
    padding: 16px;
}
div#card-element {
    margin-top: -32px;
    padding: 16px;
    font-family: Lato;
    border: 1px solid #364F75;
    border-radius: 10px;
}
input#cardholder-name {
    margin-top: 10px;
    padding: 16px;
    border: 1px solid #364F75;
    border-radius: 10px;
    font-family: Lato;
}
input#cardholder-email {
    margin-top: 10px;
    padding: 16px;
    border: 1px solid #364F75;
    border-radius: 10px;
    font-family: Lato;
}
input#cardholder-phone {
    margin-top: 10px;
    padding: 16px;
    border: 1px solid #364F75;
    border-radius: 10px;
    font-family: Lato;
}
input#cardholder-address{
    /* margin-top: 10px;
    padding: 16px; */
    border: 1px solid #364F75;
    border-radius: 10px;
    font-family: Lato;
}
input#donation-amount {
    margin-top: -6px;
    padding: 16px;
    border: 1px solid #364F75;
    border-radius: 10px;
    font-family: Lato;
    margin-bottom: 10px;
}
textarea#cardholder-address {
    margin-top: 10px;
    padding: 16px;
    border: 1px solid #364F75;
    border-radius: 10px;
    font-family: Lato;
    margin-bottom: 10px;
}
/* input{
    margin-top: 10px;
    padding: 20px;
    border: 1px solid black;
    border-radius: 10px;
} */
/* input{
    margin-top: 10px;
    padding: 20px;
    border: 1px solid black;
    border-radius: 10px;
} */

.form-container.donation h2{
    color: #F15B43;
    font-family: 'Oswald';
    font-size: 44px;
    font-weight: 600px;
}
/* Loader Styles */
.payment-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error and Success Messages */
.payment-error,
.payment-success {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    color: white;
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
}

.payment-success, .payment-error {
    z-index: 9999; /* Ensure it's above all elements */
}

.payment-error {
    background-color: #ff4444;
}

.payment-success {
    background-color: #00C851;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* Form Styles */
.form-container button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
#recaptcha-anchor-label{
    margin-top:5px;
}

/**/
@media (min-width: 375px) and (max-width: 455px) {
    .preset-amounts {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        gap: 10px; /* Adjust spacing */
    }
    
    .preset-amounts .amount-btn {
        width: 100%; /* Make buttons fill the column */
    }
}


/* Dilbagh Css Implemented */
.dnte-btn-dilbag { 
  margin-top : 10px;
  margin-left : 0!important;
  margin-right : 0!important;
  margin-bottom : 0!important;
}