.sso-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.sso-button-form {
  width: 100%;
  max-width: 320px;
}

.custom-sso-button {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--primary-border-color, #dcdcdc); /* Use your primary border color */
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-background-color, white); /* Use your primary background color */
  font-size: var(--primary-font-size, 16px); /* Inherit your primary font size */
  font-family: inherit; /* Inherit the font family */
  font-weight: bold; /* Adjust font weight as needed */
  color: var(--primary-text-color, #333); /* Use your primary text color */
  text-decoration: none;
  transition: background-color 0.3s, box-shadow 0.3s;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.custom-sso-button:hover {
  background-color: var(--hover-background-color, #f7f7f7); /* Use your hover background color */
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
}

.custom-sso-button .sso-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.sso-icon {
  width: 100%;
  height: auto;
}


  .divider {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
  }
  
  .divider::before,
  .divider::after {
      content: '';
      flex-grow: 1;
      height: 1px;
      background-color: lightgray; /* Adjust color to your preference */
      margin: 0 10px; /* Adjust based on the space you want around the "or" text */
  }  