body {
  background-color: #f0f7ff;
  font-family: Arial, sans-serif;
  color: #003366;
  margin: 0;
  padding: 0;
}

.main-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: 100vh;
}

.form-container {
  width: 45%;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 51, 102, 0.2);
  overflow-y: auto;
}

.image-container {
  width: 55%;
  background-color: #cce0ff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  width: 80%;
  border-radius: 10px;
}

h1 {
  color: #004080;
  text-align: center;
}

button {
  background-color: #004080;
  color: white;
  padding: 8px 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #0066cc;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  text-align: left;
  margin-left: 20px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* makes the image fill nicely without distortion */
  border-radius: 0;    /* remove rounding if you want it clean edge-to-edge */
}

	
