html { direction: rtl; }
body {
  margin: 0;
  padding: 24px;
  background-color: #fff5f5; /* خلفية فاتحة مائلة للأحمر */
  font-family: system-ui, -apple-system, Segoe UI, Tahoma, Arial, sans-serif;
}
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  background-color: #ffffff;
  border-top: 8px solid #d80000; /* شريط أحمر أعلى النموذج */
}
h1, h2 {
  margin: 0 0 10px 0;
  color: #d80000; /* العناوين باللون الأحمر */
  text-align: center;
}
.brand {
  text-align: center;
  font-weight: 800;
  letter-spacing: 1px;
  color: #b00000;
  margin-bottom: 8px;
  font-size: 20px;
}
label {
  display: block;
  margin: 10px 0 6px;
  color: #333;
  font-weight: 600;
}
input, select, button {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
  box-sizing: border-box;
}
button {
  margin-top: 16px;
  cursor: pointer;
  background-color: #d80000;
  color: white;
  border: none;
  font-weight: 700;
  transition: background-color .2s ease;
}
button:hover { background-color: #b00000; }
.note {
  font-size: 13px;
  opacity: 0.9;
  text-align: center;
  margin-top: 8px;
}
.product-image {
  display: block;
  margin: 0 auto 12px;
  max-width: 180px;
  height: auto;
}
.footer {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: #777;
}
.form { margin-top: 8px; }