body {
  background-color: #F3E3C3; /* پس زمینه کرم روشن */
  font-family: 'Vazirmatn', sans-serif;
  direction: rtl;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.customer-form {
  width: 350px;
  background-color: #FAEEDB; /* بژ روشن */
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: 2px solid #E7902B;
}

.customer-form h2 {
  text-align: center;
  color: #1E3A3A;
  margin-bottom: 20px;
}

.customer-form label {
  display: block;
  margin-top: 10px;
  color: #3D3E3C;
  font-size: 14px;
}

.customer-form input {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #CCC;
  margin-top: 5px;
  background-color: #fff;
}

.customer-form input:focus {
  border-color: #E7902B;
  outline: none;
}

.customer-form button {
  margin-top: 20px;
  width: 100%;
  background-color: #3D3E3C; /* قهوه‌ای تیره */
  color: #FAEEDB;
  border: none;
  padding: 10px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.customer-form button:hover {
  background-color: #1E3A3A;
}
