/* Add custom CSS styles below */ 
.custom-form::before {
  content: "نحن هنا لخدمتك";
  display: block;
  white-space: pre;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000; /* خليتها أسود عشان تظهر على الخلفية الشفافة */
}

.custom-form {
  background-color: rgba(231, 197, 63, 0.2); /* شفافه من لون e7c53f */
  padding: 40px;
  border-radius: 12px;
  max-width: 700px;
  width: 100%;
  margin: 40px auto;
  border: 3px solid #e7c53f; /* البورد حول الفورم */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); /* ظل خفيف */
}

.custom-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
}

.custom-form button {
  background-color: #e7c53f; /* زر بنفس اللون الرئيسي */
  color: #000;
  padding: 12px;
  border: none;
  border-radius: 12px;
  width: 100%;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

.custom-form button:hover {
  background-color: #d1b14f;
  color: #000;
}

.custom-form-success {
  color: #0f0;
  text-align: center;
  margin-top: 10px;
}


input#phone {
    direction: rtl;
}