body {
  font-family: "Vazirmatn", sans-serif;
  background-color: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.bg {
  background-color: #005f73;
}
.auth-card {
  width: 100%;
  max-width: 480px;
  border-radius: 0.75rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  border: none;
  overflow: hidden;
}
.auth-header {
  background-color: #005f73;
  color: white;
  padding: 2rem 1rem 0.5rem 1rem;
}
.auth-header h4 {
  font-weight: 700;
}
.password-wrapper {
  position: relative;
}
.password-toggle-icon {
  position: absolute;
  top: 75%;
  left: 1rem;
  transform: translateY(-50%);
  cursor: pointer;
  color: #6c757d;
  z-index: 100;
}
.password-wrapper .form-control {
  padding-left: 2.5rem;
}
