/* style.css - تمام استایل‌های پروژه Cinento */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body {
  background: #020617;
  color: #e5e7eb;
}
/* ---------- Login Screens ---------- */
#login-screen {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #111827, #020617 60%);
  z-index: 20;
}
.login-card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 16px;
  padding: 32px 28px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.35);
}
.login-logo {
  text-align: center;
  margin-bottom: 24px;
}
.login-logo span {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(250, 204, 21, 0.6);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fbbf24;
}
.login-title {
  text-align: center;
  margin-bottom: 20px;
}
.login-title h1 {
  font-size: 22px;
  margin-bottom: 4px;
}
.login-title p {
  font-size: 13px;
  color: #9ca3af;
}
.login-field {
  margin-bottom: 16px;
}
.login-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: #d1d5db;
}
.login-field input,
.login-field select {
  width: 100%;
  padding: 10px 11px;
  border-radius: 8px;
  border: 1px solid #374151;
  background: #020617;
  color: #e5e7eb;
  font-size: 13px;
  outline: none;
}
.login-field input:focus,
.login-field select:focus {
  border-color: #fbbf24;
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.4);
}
.login-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  margin-bottom: 18px;
  font-size: 12px;
}
.login-link {
  color: #9ca3af;
  text-decoration: none;
  cursor: pointer;
}
.login-link:hover {
  color: #fbbf24;
}
.btn-primary {
  width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #f59e0b, #facc15);
  color: #020617;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.btn-primary:hover {
  filter: brightness(1.05);
}
.login-footer {
  margin-top: 18px;
  font-size: 11px;
  text-align: center;
  color: #6b7280;
}
.login-footer span {
  opacity: 0.8;
}
.message-success { color: #22c55e; text-align: center; margin: 10px 0; }
.message-error { color: #fca5a5; text-align: center; margin: 10px 0; }