/* auth.css – minimal extra styling for auth pages */

.auth-main {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
    gap: 4rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  
  .auth-left h1 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
  }
  
  .auth-sub,
  .auth-card-sub {
    color: var(--text-sub);
    font-size: 0.95rem;
  }
  
  .auth-bullets {
    margin-top: 1.5rem;
    list-style: none;
    padding: 0;
  }
  .auth-bullets li {
    margin-bottom: 0.5rem;
    color: var(--text-sub);
  }
  
  .auth-right {
    display: flex;
    justify-content: flex-end;
  }
  
  .auth-card {
    width: 100%;
    max-width: 520px;
    background: radial-gradient(circle at top left, #25253b 0, #111320 45%, #060712 100%);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .auth-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }
  
  .auth-form .form-group {
    margin-bottom: 1rem;
  }
  
  .auth-form input,
  .auth-form textarea {
    width: 100%;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(15, 23, 42, 0.9);
    padding: 0.75rem 1rem;
    color: #e5e7eb;
    outline: none;
    font-size: 0.9rem;
  }
  
  .auth-form textarea {
    border-radius: 18px;
    min-height: 96px;
    resize: vertical;
  }
  
  .auth-form input:focus,
  .auth-form textarea:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.6);
  }
  
  .form-error {
    min-height: 1.2rem;
    font-size: 0.8rem;
    color: #f97373;
    margin-bottom: 0.6rem;
  }
  
  .auth-footer {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-sub);
  }
  
  .auth-footer a {
    color: #a855f7;
    text-decoration: underline;
  }
  
  @media (max-width: 900px) {
    .auth-main {
      grid-template-columns: minmax(0, 1fr);
      gap: 2rem;
    }
    .auth-right {
      justify-content: stretch;
    }
  }
  