.auth-container {
    max-width: 420px;
    margin: 80px auto;
    padding: 32px;
  }
  
  .auth-container h1 {
    margin-bottom: 8px;
  }
  
  .auth-subtext {
    color: #666;
    margin-bottom: 24px;
  }
  
  .auth-form .form-group {
    margin-bottom: 16px;
  }
  
  .auth-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
  }
  
  .auth-form input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
  }
  
  .btn-primary {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #111827;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
  }
  
  .btn-primary:hover {
    background: #000;
  }
  
  .auth-footer {
    margin-top: 16px;
    font-size: 14px;
    text-align: center;
  }

.auth-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.auth-link {
  font-size: 0.9rem;
  color: #2563eb;
  text-decoration: none;
}

.auth-link:hover {
  text-decoration: underline;
}