/* ==========================
   BANNER CANCEL ORDER
========================== */

.cancel-banner {
  background-color: #5a3314;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}

.cancel-banner h1 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ==========================
   WRAPPER
========================== */

.cancel-wrapper {
  min-height: calc(100vh - 240px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 24px;
}

/* ==========================
   CARD
========================== */

.cancel-card {
  background-color: #ffffff;
  width: 100%;
  max-width: 720px;
  padding: 56px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.cancel-subtitle {
  font-size: 16px;
  color: #5b4b2c;
  margin-bottom: 32px;
  line-height: 1.8;
}

.cancel-subtitle p {
  margin-bottom: 18px;
}

.cancel-subtitle p:last-child {
  margin-bottom: 0;
}

/* ==========================
   FORM
========================== */

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.form-group input {
  height: 48px;
  padding: 0 14px;
}

.form-group textarea {
  min-height: 120px;
  padding: 12px 14px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #a97b1e;
}

/* ==========================
   BUTTON
========================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  background-color: #a97b1e;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  background-color: #8f6618;
  transform: translateY(-1px);
}
