.subscription-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.email-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 4px;
  color: var(--text);
  font-family: "Fira Code", monospace;
  font-size: 1rem;
}

.email-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.1);
}

.form-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  margin-bottom: 0 !important;
  text-align: center;
}

.confirmation-message {
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 8px;
}

.confirmation-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.confirmation-message h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.confirmation-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  font-style: italic;
}

.error-message {
  padding: 1rem;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 4px;
  color: #ff6b6b;
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .subscription-form {
    flex-direction: column;
  }
}
