@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: scroll !important;
    background: #f5f5f5;
    background-image: url('/images/background-image.png');
   background-position: center;
    background-attachment: fixed;
   font-family: 'Plus Jakarta Sans', sans-serif;
}

.donation-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
}

h1 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: #333;
    font-family: 'Plus Jakarta Sans', sans-serif;

}

.amount-input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;

}

.amount-presets {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.1rem;
    margin-bottom: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;

}

a.text-red{
	color: #EE3B44;
	text-decoration: none;
}

a.text-red:hover{
	text-decoration: underline;
}

.info-menu{
	color: #666;
	margin-top: 5px;
	margin-bottom: 2rem;
	font-size: 16px;
}

.preset-btn {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Plus Jakarta Sans', sans-serif;

}

.preset-btn:hover {
    background: #f5f5f5;
}

.type-selector {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.type-btn {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    background: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.type-btn.active {
    background: #e9ecef;
    font-weight: 800;

}

.form-group {
    margin-bottom: 1rem;
}

.form-group_amount {
    margin-bottom: -0.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    font-family: 'Plus Jakarta Sans', sans-serif;

}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;

}

.fin_info_wrapper {
    position: relative;
}

.fin_info {
    position: absolute;
    right: 10px;
    top: 25%;
    object-fit: cover;
    width: 20px;
    height: 20px;
}

.fin_info img {
    width: 100%;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: rgba(238, 59, 68, 1);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 1rem;
    box-shadow: 0px 8px 0px 0px rgba(0, 34, 102, 0.25);
    color: white;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.submit-btn:hover {
    background: rgba(255, 89, 97, 1)
}

.footer-text {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.bank-logo {
    display: block;
    margin: 1rem auto;
    height: 30px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.hidden {
    display: none;
}

.pasha-container {
    display: flex;
    align-items: center;
    /* Vertically align items */
    justify-content: flex-start;
    /* Align items to the left (optional) */
}

.pasha-text {
    margin-right: 10px;
    font-size: 12px;
}

.bank-logo {
    width: 110px;
    /* Adjust the size of the image as needed */
    height: auto;
}

.payment_logo {
    width: 70px;
    /* Adjust logo size */
    height: auto;
    margin-bottom: 10px;
    /* Optional: space between logo and heading */
}

.payment_header {
    font-size: 24px;
    /* Adjust font size of the heading */
    color: #333;
    /* Set a color for the heading */
}
.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
}
.copy-btn:hover {
    color: blue;
}

.payment-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center items horizontally */
    justify-content: center;
    /* Center content vertically */
    text-align: center;
    /* Center text inside the container */
    margin-top: 20px;
    /* Optional: space between the footer and logo */
}

.text-danger {
    color: red;
    font-size: 12px;
    margin-top: 5px;
    display: block;
    font-style: italic;
}

/* Optional: Red border for invalid inputs */
.is-invalid {
    border-color: red;
}

label.required::after {
    content: " *";
    color: red;
}

button:disabled,
button:disabled:hover,
button:disabled:focus {
    background-color: #ccc !important;
    /* Keep the disabled background */
    color: #777 !important;
    /* Keep the disabled text color */
    cursor: not-allowed !important;
    /* Show the disabled cursor */
    box-shadow: none !important;
    /* Remove any shadow */
    border-color: #ccc !important;
    /* Keep the disabled border */
    transform: none !important;
    /* Prevent scaling or movement */
}

.alternative-text {
    color: #666;
    font-size: 0.875rem;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;

}

.alternative-text a {
    text-decoration: underline;
    color: #000000AB !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.payment_info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    gap: .3rem;

    & p {
        font-family: Plus Jakarta Sans;
        font-size: 12px;
        font-weight: 500;
        line-height: 13.2px;
        letter-spacing: 0.02em;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #00000066;
        margin: 0rem;
    }

    img {
        width: 110px;
        height: 20px;
        gap: 0px;
        opacity: 0px;

    }
}
