@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap");

body,
html {
  margin: 0;
  padding: 0;
  background-color: #d3e0d1;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  width: 1000px;
  height: 550px;
}

.box {
  display: flex;
  background-color: #bdcfba;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.left-column,
.right-column {
  flex: 1;
  padding: 20px;
  box-sizing: border-box;
}

.logo img {
  width: 100%;
  max-height: 50%;
}

.description {
  margin-top: 20px;
  font-size: 18px;
  color: #353535;
}

.upper-text h2 {
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
  font-size: 38px;
  color: #353535;
}

input[type="email"],
button {
  box-sizing: border-box;
}

input[type="email"] {
  width: 100%;
  /* background-color: #a2d6b8; */
  background-color: #d6d8c0;
  border: none;
  padding: 15px;
  margin-bottom: 10px;
  font-size: 18px;
}

button {
  background-color: #353535;
  color: white;
  border: none;
  padding: 15px;
  width: 100%;
  font-size: 18px;
}

.contact-link {
  display: inline-block;
  margin-top: 10px;
  text-decoration: underline;
  color: #353535;
  font-size: 20px;
}

form#mc-form {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* Media Queries for Responsiveness */

/* For tablets (Optional) */
@media (max-width: 1024px) {
  .container {
    width: 80%;
    height: auto;
  }
}

/* For mobile devices */
@media (max-width: 768px) {
  .container {
    width: 100%;
    height: auto;
  }

  .box {
    flex-direction: column; /* Stack columns vertically */
    padding: 15px;
  }

  .left-column,
  .right-column {
    flex: none; /* Disable flex grow/shrink */
    width: 100%; /* Make columns full-width */
    padding: 15px;
  }

  .logo img {
    max-height: 30%; /* Adjust as needed */
  }

  .description,
  .upper-text h2,
  input[type="email"],
  button,
  .contact-link {
    font-size: 16px; /* Adjust font size */
  }

  .upper-text h2 {
    font-size: 32px; /* Adjust heading font size */
  }
}
