  /* Style the form container */
  #donation-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    margin: auto;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Style the headers */
#donation-form h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 16px;
    text-align: start;
}

.options-cont {
    display: flex;
    justify-content: center;
    column-gap: 0.3rem;
}

/* Hide the default radio buttons */
#donation-form input[type="radio"] {
    display: none;
}

/* Style the labels as buttons */
#donation-form label {
    display: block;
    width: 100%;
    padding: 10px;
    background: #ddd;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s, color 0.3s;
}

/* Change color when selected */
#donation-form input[type="radio"]:checked + label {
    background: #45A5DD;
    color: white;
}

/* Style the select dropdown */
#donation-form select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

/* Style the "Other amount" input */
#custom-amount {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    display: none; /* Hidden by default */
}

.form-row input {
    width: 100%;
    font-size: 14px;
}

.pair-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1.0rem;
}

.pair-fields-document {
    display: flex;
    justify-content: space-between;
    column-gap: 0.5rem;
}

.top-item {
    grid-column: 1 / -1; /* Ocupa todo el ancho */
}

.bottom {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50% - 50% */
    gap: 20px;
}

.form-label {
    text-align: left;
    font-size: 14px;
    font-weight: normal;
    color: #666;
}
/* Style the create account checkbox */
#create-account-row {
    text-align: left;
    margin: 10px 0;
}

#create-account-row label {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

#create-account-row input[type="checkbox"] {
    display: inline-block;
    margin-right: 8px;
    width: auto;
    cursor: pointer;
}

#create-account-row label:hover {
    color: #45A5DD;
}

#accept_terms_label {
    margin-top: 10px;
}

/* Style the submit button */
#donate-btn {
    width: 100%;
    background: #CF449D;
    color: white;
    padding: 12px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s;
}

#donate-btn:hover {
    background: #B63C8A;
}