body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f0f0;
    color: #000;
    margin: 0;
    padding: 0;
}

.form-container {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
    background: #FCBD34;
    border-radius: 8px;
    color: #000;
}

/* Header Image Block */
.header-new {
    padding-bottom: 20px;
}

/* Headings */
h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2C2C2C;
    text-align: center;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2C2C2C;
    text-align: center;
}

/* Labels & Inputs */
label {
    font-size: 14px;
    color: #000000;
    margin-bottom: 5px;
}

input, select, textarea {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    color: #111827;
    background-color: #fff;
}

textarea {
    resize: vertical;
}

/* Dropdown Styles */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    border: 1px solid #D1D5DB;
    padding: 10px 14px;
    border-radius: 5px;
    font-size: 16px;
    color: #111827;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='gray' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.585l3.71-4.355a.75.75 0 011.14.977l-4.25 5a.75.75 0 01-1.14 0l-4.25-5a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 16px;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

select:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 1px #F97316;
}

/* Form Structure */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.form-row > div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.address-field {
    flex: 2;
}

.form-step {
    width: 100%;
}

/* Buttons */

/* Amount Text */
.amount-info {
    font-weight: 600;
    color: #111;
    font-size: 16px;
    padding: 10px 0;
}

/* Responsive */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
}
.form-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 20px;
}

.button-submit {
  background: linear-gradient(to right, #f97316, #ea580c);
  color: #ffffff;
  border: none;
  padding: 12px 40px;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.button-submit:hover {
  background: linear-gradient(to right, #ea580c, #f97316);
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.button-next {
    background: linear-gradient(to right, #f97316, #ea580c);
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 40px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.buttons-bottom {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}


