body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Form container */
.form-container {
  background: #ffffff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 380px;
  width: 95%;
  direction: rtl;
}

.form-container h4 {
  font-size: clamp(1.1rem, 1.1vw, 1.1rem);
  color: #333333;

  text-align: center;
}
form {
  padding: 10px;
  font-family: droid arabic kufi;
}

form input,
form textarea {
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: clamp(0.8rem, 1vw, 1rem);
  background: #f9f9f9;
  font-family: droid arabic kufi;
}

form input:focus,
form textarea:focus {
  border: 1px solid #007bff;
  outline: none;
  background: #ffffff;
}

form textarea {
  resize: none;
}

form button {
  width: 100%;
  padding: 10px 15px;
  background: #24911d;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: clamp(0.8rem, 1vw, 1rem);
  /* font-weight: bold; */
  cursor: pointer;
  font-family: droid arabic kufi;
  transition: background 0.3s ease;
}

form button:hover {
  background: #19a729;
}
