/* Discovery Button Styling - Updated Metallic Look */
.Button--discovery {
  padding: 32px 26px !important;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 12px;
  color: white;
  text-decoration: none !important;
  display: block;
  width: 450px;
  max-width: 90vw;
  margin: 8px auto; /* Reduced vertical margin from 16px to 8px */
  border: none;
  transition: all 0.3s ease;
  box-shadow:
    inset 0 2px 8px rgba(255, 255, 255, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;

  margin-left: calc(50% - 225px - 12px);  /* Adjusted for 450px width */
  margin-right: calc(50% - 225px - 12px);
}

/* Top Button – Metallic Purple */
.ic-Login__sso-list__item:first-child .Button--discovery {
  background: linear-gradient(135deg,
    #9e2065 0%,
    #7a194d 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-shadow:
    inset 0 2px 12px rgba(255, 255, 255, 0.3),
    0 4px 15px rgba(122, 73, 77, 0.7);
}

/* Bottom Button – Metallic Blue (base #2154a7 to darker) */
.ic-Login__sso-list__item:last-child .Button--discovery {
  background: linear-gradient(135deg,
    #2154a7 0%,
    #173a73 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-shadow:
    inset 0 2px 12px rgba(255, 255, 255, 0.3),
    0 4px 15px rgba(23, 58, 115, 0.7);
}

/* Hover Effects */
.Button--discovery:hover {
  transform: scale(1.04);
  box-shadow:
    inset 0 4px 16px rgba(255, 255, 255, 0.7),
    0 6px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none !important;
}

/* Button Text */
.ic-Login__sso-button__title {
  color: white !important;
  text-decoration: none !important;
  font-weight: 500;
  padding: 0;
  display: block;
  text-align: center;
}
