/* style.css */
body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  margin: 0;
  padding: 20px;
}

.form-container {
  background: #fff;
  padding: 30px;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.logo img {
  max-width: 80px;
  height: auto;
  display: block;
  margin: 0 auto 10px auto;
}

h1 {
  text-align: center;
  color: #004b87;
  margin-top: 10px;
}

label {
  display: block;
  margin: 15px 0 5px;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="date"],
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

button[type="submit"] {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background: #004b87;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background: #006bbd;
}

h3 {
  margin-top: 25px;
  color: #333;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

.footer {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #666;
}

.footer a {
  color: #003366;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .form-container {
    padding: 20px;
  }

  button[type="submit"] {
    font-size: 14px;
  }
}
