/* auth.css - Styling login & register forms with glassmorphism */
.auth-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
}

.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px 36px;
  width: 100%;
  max-width: 440px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(124,58,237,0.14);
}

@media (max-width: 480px) {
  .auth-card {
    padding: 32px 24px;
    margin: 0 16px;
  }
  .auth-header h2 {
    font-size: 1.8rem;
  }
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-header h2 {
  font-family: var(--font-d);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
}

.auth-header p {
  color: var(--text-2);
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 8px;
}

.auth-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 16px 18px;
  color: var(--text-1);
  font-size: 0.95rem;
  transition: var(--ease);
  outline: none;
}

.auth-input::placeholder {
  color: var(--text-3);
}

.auth-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
  background: rgba(255,255,255,0.08);
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-2);
}

.auth-footer a {
  color: #a78bfa;
  font-weight: 500;
}

.auth-footer a:hover {
  text-decoration: underline;
  color: #c4b5fd;
}
