@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;700;800&display=swap');

:root {
  --primary-gradient: linear-gradient(135deg, #ec4899, #8b5cf6);
  --bg-color: #f8fafc;
  --card-bg: rgba(255, 255, 255, 0.9);
  --text-main: #1e293b;
  --text-muted: #64748b;
}

body {
  margin: 0 auto;
  font-family: 'Vazir', sans-serif  !important;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  height: 100vh;
  
}

.btn-nav{
  color: #fff !important;
}
.btn-outline-nav{
  border:1px solid var(--primary2) !important;
  
}

.btn-outline-nav:hover{
  color: #fff !important;
  
}
.main-wrapper {
  flex: 1; 
  display: flex;
  align-items: center; 
  justify-content: center; 
  padding: 40px 15px;
}

.auth-container {
  width: 100%;
  max-width: 420px;
  padding: 15px;
}

.auth-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 0px 25px -5px rgba(98, 12, 144, 0.372), 0 0px 10px -5px rgba(132, 6, 105, 0.41);
}

.brand-logo {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.3);
}

.auth-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 8px;
}

.auth-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 32px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-control {
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text-main);
}

.form-control:focus {
  background-color: #fff;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.btn-auth {
  background: var(--primary-gradient);
  border: none;
  color: white;
  border-radius: 12px;
  padding: 12px;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  margin-top: 10px;
  transition: transform 0.2s;
}

.btn-auth:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.3);
  color: white;
}

.auth-footer {
  text-align: center;
  margin-top: 25px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.auth-footer a {
  color: #8b5cf6;
  text-decoration: none;
  font-weight: 700;
}

.auth-footer a:hover {
  color: #ec4899;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #cbd5e1;
  margin: 20px 0;
  font-size: 0.8rem;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e2e8f0;
}

.divider:not(:empty)::before { margin-left: .5em; }
.divider:not(:empty)::after { margin-right: .5em; }
