.register-box {
  max-width: 800px;
  margin: 30px auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.register-title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
  color: #004eaf;
}

.register-form input,
.register-form select,
.register-form button,
.register-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Almarai', sans-serif;
  box-sizing: border-box;
}
.register-form label {
  display: block;
  margin-bottom: 4px;
  color: #333;
  font-size: 12px;
}
.note-text {
  font-size: 10px;
  color: #2a7400;
  margin: 5px 0 10px;
}

/* زر عام داخل الفورم */
.register-form button:not(.back-btn):not(.submit-btn) {
  background-color: #004eaf;
  color: #fff;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease;
}
.register-form button:not(.back-btn):not(.submit-btn):hover {
  background-color: #003c8f;
}


.phone-wrapper {
  display: flex;
  gap: 5px;
  align-items: center;
}

.phone-wrapper input[readonly] {
  background-color: #f4f4f4;
  text-align: center;
}

.hidden {
  display: none;
}

.error-box {
  color: red;
  margin-bottom: 10px;
  font-size: 15px;
}

/* مؤشرات الخطوات */
.step-indicator {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 5px;
}
.step {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #ddd;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.step.active {
  background-color: #004eaf;
  color: white;
}

/* المستخدم */
.user-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.user-links a {
  display: block;
  padding: 8px 12px;
  background-color: #f1f5ff;
  border-radius: 6px;
  text-decoration: none;
  color: #004eaf;
  font-size: 15px;
  transition: background 0.3s ease;
}
.user-links a:hover {
  background-color: #dce8ff;
}
.user-links .logout-link {
  background-color: #ffeaea;
  color: #d10000;
}
.user-links .logout-link:hover {
  background-color: #ffc7c7;
}
.button-row-inside {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.button-row-inside button {
  flex: 1;
  width: auto !important;
  padding: 10px;
  border-radius: 6px;
  font-family: 'Almarai', sans-serif;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}


.back-btn {
  background-color: #7a7a7a;
  color: #fff;
}
.back-btn:hover {
  background-color: #5a6268;
}

.submit-btn {
  background-color: #004eaf;
  color: #fff;
}
.submit-btn:hover {
  background-color: #003c8f;
}
