
* {
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  color: #333;
}

.container {
  max-width: 600px;
  margin: 30px auto;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h2, h3 {
  text-align: center;
  margin-bottom: 15px;
}

.contact, .email {
  text-align: center;
  margin: 5px 0;
  font-size: 0.95rem;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 15px;
  font-weight: bold;
}

input[type="text"],
input[type="number"],
input[type="tel"],
input[type="date"],
input[type="file"],
textarea {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  font-size: 1rem;
}

textarea {
  resize: vertical;
}

.agreement {
  display: flex;
  align-items: center;
  margin-top: 15px;
  font-size: 0.9rem;
}

.agreement input {
  margin-right: 10px;
}

button {
  margin-top: 20px;
  padding: 12px;
  background-color: #0073e6;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background-color: #005bb5;
}

.note {
  font-size: 0.9rem;
  margin-top: 10px;
  background: #eef6ff;
  padding: 10px;
  border-left: 3px solid #0073e6;
}

/* Responsive design */
@media screen and (max-width: 600px) {
  .container {
    margin: 10px;
    padding: 20px;
  }

  h2, h3 {
    font-size: 1.3rem;
  }

  .contact, .email {
    font-size: 0.9rem;
  }

  input, textarea, button {
    font-size: 1rem;
  }
}
