@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;700&display=swap');

// Custom styles for RTL, modern, cafe-themed login/register pages
body.auth-bg {
  background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1500&q=80') no-repeat center center fixed;
  background-size: cover;
  direction: rtl;
  font-family: 'Vazirmatn', 'Nunito', sans-serif;
}

.auth-card {
  background: rgba(255,255,255,0.92);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  padding: 2.5rem 2rem 2rem 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  border: none;
}

.auth-card .card-header {
  background: transparent;
  border-bottom: none;
  font-size: 1.5rem;
  color: #7c4700;
  font-weight: bold;
  text-align: right;
}

.auth-card label {
  text-align: right;
  color: #7c4700;
  font-weight: 500;
}

.auth-card .form-control {
  border-radius: 0.75rem;
  border: 1px solid #e0c097;
  background: #fffbe9;
}

.auth-card .btn-primary {
  background: linear-gradient(90deg, #c97c5d 0%, #7c4700 100%);
  border: none;
  border-radius: 0.75rem;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0.5rem 2.5rem;
}

.auth-card .btn-link {
  color: #c97c5d;
  text-decoration: underline;
  font-size: 1rem;
}

.auth-card .form-check-label {
  float: right;
}

@media (max-width: 576px) {
  .auth-card {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
}
