body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #4e73df, #1cc88a);
  margin: 0;
  padding: 0;
}

.container {
  width: 90%;
  max-width: 600px;
  background: #fff;
  margin: 40px auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

h2 {
  text-align: center;
  color: #333;
}

p {
  text-align: center;
  color: #666;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #444;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

input:focus, select:focus, textarea:focus {
  border-color: #4e73df;
  outline: none;
}

button {
  width: 100%;
  padding: 12px;
  background: #4e73df;
  color: white;
  border: none;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #2e59d9;
}