body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.container {
  display: flex;
  height: 100vh;
}

.left {
  width: 40%;
  background: url('contactformimage.jpg') no-repeat center center;
  background-size: cover;
}

.right {
  width: 60%;
  background-color: rgb(151, 199, 209); /* blue */
  color: black;
  padding: 40px;
  box-sizing: border-box;
}

h1 {
  margin-top: 0;
  font-size: 32px;
  font-weight: bold;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin: 10px 0 5px;
  font-weight: bold;
}

input, textarea {
  padding: 10px;
  font-size: 16px;
  background-color: transparent; /* or match .right's background if you want */
  color: black; /* text color */
  border: 1px solid black; /* black border */
  border-radius: 4px;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

button {
  margin-top: 20px;
  padding: 12px;
  background-color: red;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  width: 100px;
}

button:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .left, .right {
    width: 100%;
    height: 50vh;
  }
}
