/* فونت فارسی */
@font-face {
  font-family: 'B Titr';
  src: url('fonts/B Titr.woff2') format('woff2'),
       url('fonts/B Titr.woff') format('woff'),
       url('fonts/B Titr.ttf') format('truetype');
}

/* تنظیمات عمومی */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  direction: rtl;
}

body {
  font-family: 'B Titr', Arial, sans-serif;
  background-color: #f4f6f8;
  color: #333;
}

/* هدر سایت */
.top_header {
  background-color: #81c2d3;
  padding: 20px;
  text-align: center;
  color: white;
}

.top_header h1 {
  font-size: 1.8rem;
}

/* فرم‌ها */
input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'B Titr';
  font-size: 1rem;
  background-color: #fff;
}

/* متن راهنمای ورودی‌ها کم‌رنگ بشه 👇 */
::placeholder {
  color: #aaa;
  font-size: 0.95rem;
  font-family: 'B Titr';
}

/* دکمه‌ها */
.btn {
  padding: 10px 20px;
  background-color: #5fb1c6;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

.btn:hover {
  background-color: #4a9db2;
}

/* فوتر */
.footer {
  background-color: #7dd3c6;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
  margin-top: 30px;
}
input::placeholder,
textarea::placeholder {
  color: #ebe9e9 !important;
  font-size: 0.95rem;
  font-family: 'B Titr', Arial, sans-serif;
  opacity: 1; /* خیلی مهمه، بعضی مرورگرها بدون این تار نشون می‌دن */
}
