body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #1B034F;
  color: white;
}

h1 {
  font-family: 'Neulis Cursive', cursive;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
}

.form-container {
  background-color: white;
  color: #1B034F;
  max-width: 600px;
  margin: 60px auto;
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.15);
}

input[type='text'],
input[type='email'],
input[type='submit'] {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
}

input[type='submit'] {
  background-color: #c10c1c;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

input[type='submit']:hover {
  background-color: #a10a16;
}

.radio-group {
  margin-bottom: 20px;
}

.radio-group label {
  margin-right: 15px;
  font-weight: normal;
}

.message.success {
  background-color: #dff0d8;
  color: #1B034F;
  border: 1px solid #1B034F;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 20px;
  text-align: center;
}

.message.error {
  background-color: #f8d7da;
  color: #c10c1c;
  border: 1px solid #c10c1c;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 20px;
  text-align: center;
}

.sendlive {
  margin-top: 1rem;
  display: block;
  margin: 20px auto;
  font-weight: bold;
  background-color: #1B034F;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.sendlive:hover {
  background-color: #c10c1c;
}