/* Reset some basic elements */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f6f8;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.form-container {
  background-color: #ffffff;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
}

h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #2c3e50;
}

form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  margin-top: 15px;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form select {
  width: 100%;
  padding: 10px;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s;
}

form input:focus,
form select:focus {
  border-color: #007BFF;
  outline: none;
}

form input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.2);
}

form input[type="submit"],
form input[type="reset"] {
  width: 48%;
  padding: 10px 0;
  margin-top: 20px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form input[type="submit"] {
  background-color: #28a745;
  color: #fff;
  margin-right: 4%;
}

form input[type="reset"] {
  background-color: #dc3545;
  color: #fff;
}

form input[type="submit"]:hover {
  background-color: #218838;
}

form input[type="reset"]:hover {
  background-color: #c82333;
}
