/* ستایلەکانی بنچینەیەکان */
body {
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  margin: 0;
  padding: 0;
  direction: rtl;
}

.register-container {
  width: 100%;
  max-width: 400px;
  margin: 50px auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
}

input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 14px;
  text-align: right;
}

input:focus {
  outline: none;
  border-color: #ff7f00;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #ff7f00; /* پرتەقاڵی گرم */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  box-sizing: border-box;
  margin-top: 10px;
}

button:hover {
  background-color: #ff5200;
}

p.login-link {
  text-align: center;
  margin-top: 20px;
}

p.login-link a {
  color: #ff7f00;
  text-decoration: none;
  font-weight: bold;
}

p.login-link a:hover {
  text-decoration: underline;
}

.error-message {
  color: #d32f2f;
  font-size: 14px;
  margin-top: 5px;
  display: none;
  text-align: center;
}

.success-message {
  color: #388e3c;
  font-size: 14px;
  margin-top: 10px;
  display: none;
  text-align: center;
}