body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: #f5f8ff;
  color: #1e2a36;
}

.container {
  max-width: 600px;
  margin: 60px auto;
  padding: 30px;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}

h1 {
  font-size: 26px;
  color: #1e2a36;
}

.subtitle {
  margin-bottom: 30px;
  color: #555;
}

.form label {
  display: block;
  text-align: left;
  margin-bottom: 15px;
  font-weight: 500;
}

.form input {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  margin-bottom: 15px;
  border: 1px solid #d8e1ec;
  border-radius: 8px;
  font-size: 16px;
  background-color: #f1f6fd;
}

button {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: #ff7300; /* NotifyVisitors Orange */
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #e96600;
}

.result {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #007d4e;
}
