.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;
}

.divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
  color: #aaa;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #eee;
}

.divider span {
  margin: 0 10px;
}

.google-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid #dadce0;
  background: white;
  font-weight: 500;
  text-decoration: none;
  color: #3c4043;
  transition: 0.2s ease;
}

.google-btn:hover {
  background: #f7f8f8;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.google-btn img {
  width: 18px;
  height: 18px;
}

.github-oauth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background-color: #24292e;
  color: white;

  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;

  transition: background 0.2s ease;
}

.github-oauth:hover {
  background-color: #1b1f23;
}

.github-oauth .icon {
  display: flex;
}
