/* SRED-PLUGIN-CSS-SIGNATURE */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
.sred-auth-form *,
.sred-auth-form *::before,
.sred-auth-form *::after {
  box-sizing: border-box;
}
.sred-auth-form *,
.sred-auth-form *::before,
.sred-auth-form *::after {
  box-sizing: border-box;
}
.sred-info-text {
  max-width: 420px;
  margin: 80px auto;
  padding: 18px 20px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  color: #0f172a;
  font-size: 14px;
  text-align: center;
  font-family: Poppins, system-ui, -apple-system, sans-serif;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.sred-auth-form {
  max-width: 420px;
  margin: 80px auto;
  padding: 36px 32px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  color: #0f172a;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  border: 1px solid #e5e7eb;
}

.sred-auth-form h2 {
  margin-bottom: 22px;
  font-size: 22px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.sred-input {
  width: 100%;
  padding: 13px 14px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  outline: none;
  font-size: 14px;
  font-family: inherit;
}

.sred-input::placeholder {
  color: #9ca3af;
}

.sred-input:focus {
  border-color: #00b3ff;
  box-shadow: 0 0 0 3px rgba(0, 179, 255, 0.18);
}

/* Gradient CTA Button */
.sred-btn {
  width: 100%;
  padding: 14px 16px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #007cff 0%, #00c2ff 50%, #00e6a8 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: block;
  box-shadow: 0 10px 24px rgba(0, 124, 255, 0.25);
}

.sred-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 124, 255, 0.35);
}

.sred-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.sred-auth-form p {
  margin-top: 12px;
  color: #dc2626;
  text-align: center;
  font-size: 13px;
  font-family: inherit;
}
.sred-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.sred-logo img {
  max-width: 180px;
  height: auto;
}