.section-notify-empty {
  max-width: 28rem;
  margin-inline: auto;
}

.section-notify-empty__message {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.section-notify__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}

.section-notify__input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font: inherit;
  text-align: center;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.section-notify__input:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.section-notify__btn {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  font: inherit;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(90deg, #2563eb 0%, #991b1b 100%);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.section-notify__btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.28);
}

.section-notify__btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.section-notify__status {
  margin-top: 0.75rem;
  font-size: 0.92rem;
  line-height: 1.6;
}

.section-notify__status.is-success {
  color: #15803d;
}

.section-notify__status.is-error {
  color: #b91c1c;
}

@media (min-width: 520px) {
  .section-notify__form {
    flex-direction: row;
    align-items: center;
  }

  .section-notify__input {
    flex: 1 1 auto;
    text-align: start;
  }

  .section-notify__btn {
    flex: 0 0 auto;
    width: auto;
    white-space: nowrap;
  }
}
