body {
  font-family: Arial, sans-serif;
  background: #f4f6f8;
  padding: 20px;
}

.container {
  max-width: 720px;
  margin: auto;
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
}

/* Logo styling */
.logo {
  text-align: center;
  margin-bottom: 15px;
}

.logo img {
  width: 120px;   /* adjust size as needed */
  height: auto;   /* maintain aspect ratio */
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

label {
  font-weight: bold;
  margin-top: 15px;
  display: block;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
}

textarea {
  resize: vertical;
}

.checkbox {
  font-weight: normal;
  margin-top: 20px;
}

button {
  margin-top: 25px;
  width: 100%;
  padding: 12px;
  background: #1a73e8;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #1558b0;
}

.success {
  text-align: center;
  font-size: 18px;
  color: green;
}
