body {
  font-family: Arial, sans-serif;
  background:#304050
}

.order-wrapper {
  width: 800px;
  margin: 40px auto;
  padding: 25px;
  border: 2px solid #6ac259;
  background: #fff;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

.row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.field.full {
  flex: 2;
}

label {
  font-size: 13px;
  margin-bottom: 5px;
}

input, select, textarea {
  padding: 8px;
  border: 1px solid #000;
}

textarea {
  height: 90px;
}

.radio-group {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

.actions {
  justify-content: space-between;
  align-items: center;
}

button {
  background: #6ac259;
  border: none;
  padding: 10px 25px;
  cursor: pointer;
  font-weight: bold;
}

/* Fade In Up Animation */
.fade-in-up {
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.order-id-box {
  background: #f0fdf0;
  border: 1px solid #6ac259;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}