* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f0f0;
    color: #000;
    margin: 0;
    padding: 0;
}

.form-container {
    width: 95%;
    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: #000;
    font-size: 16px;
    text-align: center;
    background-color: #fff8e1;
    padding: 12px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* 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, #2C2C2C, #000);
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    padding: 14px 45px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.button-next:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #000;
}

.button-next:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Loader Animation */
.loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.buttons-bottom {
    display: flex;
    justify-content: center; /* Centered for more prominence */
    gap: 10px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

/* Premium Form Touches */
.form-container {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

input:focus, select:focus, textarea:focus {
    border-color: #000 !important;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.05) !important;
    outline: none;
}


