body {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #f2f4f8;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 600px;
  background: white;
  margin: 50px auto;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

h2 {
  color: #003366;
  text-align: center;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

input, select, textarea, button {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

button {
  margin-top: 20px;
  background-color: #003366;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background-color: #00509e;
}

.success-message {
  margin-top: 20px;
  text-align: center;
  color: green;
  font-weight: bold;
}
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
  text-align: center;
}

.logo img {
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
