@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;700;800&display=swap');

:root {
  --primary-color: #d946ef;
  --secondary-color: #8b5cf6;
  --bg-light: #f8fafc;
  --text-dark: #1e293b;
  --text-muted: #64748b;
}

body {
  margin: 0;
  font-family: 'Vazir', sans-serif !important;
  background-color: var(--bg-light);
  background-image: 
    radial-gradient(at 0% 0%, rgba(217, 70, 239, 0.03) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(139, 92, 246, 0.03) 0px, transparent 50%);
  display: flex;
  flex-direction: column;
  min-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-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 480px; 
  box-shadow: 0 0px 25px -5px rgba(98, 12, 144, 0.372), 0 0px 10px -5px rgba(132, 6, 105, 0.41);
}

.brand-header {
  text-align: center;
  margin-bottom: 30px;
}

.brand-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-size: 1.4rem;
}

.brand-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
}


.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-control {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 15px;
  font-size: 0.9rem;
}

.form-control:focus {
  background-color: #fff;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(217, 70, 239, 0.1);
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  color: white;
  border-radius: 12px;
  padding: 12px;
  font-weight: 700;
  width: 100%;
  margin-top: 15px;
  transition: transform 0.2s;
}

.btn-primary-custom:hover {
  transform: translateY(-1px);
  color: white;
}

.auth-footer {
  text-align: center;
  margin-top: 25px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.auth-footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
}

.helper-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 5px;
}
