.login-card {
  display: grid;
  gap: 14px;
}

.login-card__intro {
  margin-top: -2px;
}

.login-card .status {
  color: var(--text-muted);
}

.button-group {
  display: grid;
  gap: 12px;
  margin-top: 4px;
  margin-bottom: 10px;
}

.login-card .button-group .button {
  width: 100%;
  min-height: 58px;
  justify-content: flex-start;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: none;
}

.login-card .button-provider {
  position: relative;
  overflow: hidden;
  gap: 12px;
  color: var(--text);
}

.login-card .button-provider::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 1;
  pointer-events: none;
}

.login-card .button-discord {
  background: rgba(68, 82, 187, 0.14);
  border-color: rgba(68, 82, 187, 0.3);
}

.login-card .button-discord::before {
  background: linear-gradient(135deg, rgba(68, 82, 187, 0.24), rgba(68, 82, 187, 0.08));
}

.login-card .button-discord:hover {
  background: rgba(68, 82, 187, 0.2);
  border-color: rgba(68, 82, 187, 0.46);
}

.login-card .button-telegram {
  background: rgba(49, 173, 225, 0.14);
  border-color: rgba(49, 173, 225, 0.3);
}

.login-card .button-telegram::before {
  background: linear-gradient(135deg, rgba(49, 173, 225, 0.24), rgba(49, 173, 225, 0.08));
}

.login-card .button-telegram:hover {
  background: rgba(49, 173, 225, 0.2);
  border-color: rgba(49, 173, 225, 0.46);
}

.login-card .button-provider__icon {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  opacity: 0.95;
}

.login-card .button-provider span {
  position: relative;
  z-index: 1;
}

.login-card .button-provider__icon-wrap {
  position: relative;
  z-index: 1;
}

.login-card .button-provider span:last-child {
  font-size: 1rem;
  font-weight: 800;
}

@media (min-width: 640px) {
  .button-group {
    grid-template-columns: 1fr 1fr;
  }
}
