body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
  color: #37474F;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  font-size: 2.5rem;
  color: #1565C0;
  margin: 2rem 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.form-container, .container {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  width: 80%;
  max-width: 600px;
}

input[type="text"], select {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #B0BEC5;
  border-radius: 4px;
  font-size: 1rem;
}

button {
  background-color: #1565C0;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0D47A1;
}

blockquote {
  font-style: italic;
  border-left: 4px solid #1565C0;
  padding-left: 1rem;
  margin: 1rem 0;
}