.social-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 75%;
  }
  
  .social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    background: #2d3338;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
  }
  
  .social-btn:hover {
    background: #3d444a;
    transform: translateY(-1px);
    color: #d8d8d8;
  }
  
  .social-btn svg {
    flex-shrink: 0;
  }
  
  /* Specific button styles */
  .google-btn {
    background: #2f2f2f;
  }
  
  .google-btn:hover {
    background: #404040;
  }
  
  .microsoft-btn {
    background: #2f2f2f;
  }
  
  .microsoft-btn:hover {
    background: #404040;
  }
  
  @media (max-width: 768px) {
    .social-login-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
      }
    .social-btn {
      padding: 0.75rem 1rem;
      font-size: 0.9rem;
    }
  }