* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top right, #3b0a45, #000);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.container {
  width: 90%;
  max-width: 400px;
}

.icon {
  font-size: 24px;
  margin-bottom: 16px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

p {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 24px;
}

.notify-form {
  display: flex;
  gap: 8px;
}

.notify-form input {
  flex: 1;
  padding: 12px;
  background: transparent;
  border: 1px solid #555;
  color: #fff;
  border-radius: 4px;
}

.notify-form input::placeholder {
  color: #aaa;
}

.notify-form button {
  padding: 12px 16px;
  border: none;
  background: #fff;
  color: #000;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
}

.status {
  margin-top: 12px;
  font-size: 0.9rem;
  opacity: 0.85;
}