/* signup.css */

/* ========== AUTH HERO ========== */
.auth-hero {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(67, 97, 238, 0.1),
    rgba(58, 12, 163, 0.1)
  );
}
.auth-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.auth-hero p {
  font-size: 1.2rem;
  color: var(--light-text);
}

/* ========== AUTH SECTION ========== */
.auth-section {
  margin-top: 40px;
}

.auth-tabs {
  display: flex;
  list-style: none;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  gap: 20px;
  cursor: pointer;
}
.auth-tabs li {
  padding: 10px 20px;
  background: var(--card-bg);
  border-radius: 10px 10px 0 0;
  transition: background 0.3s;
}
.auth-tabs li:hover {
  background: rgba(67, 97, 238, 0.1);
}
.auth-tabs li.active {
  background: var(--white);
  border-bottom: 2px solid var(--primary-gradient);
}

.auth-form {
  display: none;
  max-width: 400px;
  margin: 0 auto;
}
.auth-form.active {
  display: block;
}
.auth-form h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}
.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.primary-btn {
  margin-top: 10px;
}
