@charset "utf-8";
/* CSS Document */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  text-align: center;
}

h2 {
  text-align: center;
  margin: 50px 0;
}

form {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
table {
  width: 100%;
  font-size: 80%;
}
table th {
  padding-right: 10px;
}

input[type='text'],
input[type='email'],
input[type='tel'],
input[type='submit'] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 150%;
}

input[type='submit'] {
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
}

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