/* استيراد خط عربي جميل */
@import url('https://fonts.googleapis.com/css2?family=Amiri&display=swap');

body {
  font-family: 'Amiri', 'Traditional Arabic', serif;
  background-color: #f5f8fa;
  margin: 0;
  padding: 0;
  direction: rtl;
  color: #004080;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background-color: #004080;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
}

header h1 {
  font-size: 20px;
  margin: 0;
}

header h2 {
  font-size: 14px;
  margin: 5px 0 0 0;
}

h3 {
  text-align: center;
  font-size: 22px;
  margin: 20px 0;
  color: #004080;
}

.main-button {
  display: inline-block;
  background-color: #0077cc;
  color: #fff;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  margin: 10px;
  transition: background-color 0.3s;
}

.main-button:hover {
  background-color: #005999;
}

footer {
  background-color: #004080;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  margin-top: auto;
  width: 100%;
}

.stamp {
  border: 3px dashed #0077cc;
  width: 140px;
  height: 70px;
  text-align: center;
  line-height: 70px;
  font-size: 14px;
  color: #004080;
  font-weight: bold;
  border-radius: 15px;
  background: #e6f2ff;
  box-shadow: inset 0 0 8px #99ccff;
  margin: 10px;
}

.form-container {
  max-width: 500px;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

button, .submit-button {
  background-color: #005577;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

button:hover, .submit-button:hover {
  background-color: #003f5c;
}

input, select {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

label {
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 4px;
  display: block;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-group {
  flex: 1;
}
