/* Login and Register Manager - Custom Styles (Glassmorphism + Shadcn) */

.lrm-form__button--primary {
  background-color: #09090b;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 9999px;
}

.lrm-form__button--primary:hover:not(:disabled) {
  background-color: #18181b;
}

.lrm-form__input {
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
}

.lrm-form__input:focus {
  border-color: #000000;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
}

.lrm-form__label {
  color: #09090b;
  font-size: 14px;
}

.lrm-form__message--error, .lrm-form__error {
  color: #dc2626;
}

.lrm-form__message--success {
  color: #16a34a;
}

.lrm-social-button {
  border-radius: 9999px;
  padding: 12px 24px;
}

.lrm-social-button--google {
  background-color: #4285f4;
}

.lrm-social-button--google:hover {
  background-color: #357ae8;
}

.lrm-social-button--soundcloud {
  background-color: #ff5500;
}

.lrm-social-button--soundcloud:hover {
  background-color: #ff6a1a;
}

.lrm-social-button--spotify {
  background-color: #1db954;
}

.lrm-social-button--spotify:hover {
  background-color: #1ed760;
}

