/* Update the styling for the container */
.container {
  width: 575px;
  height: 650px;
  color: #fff;
  background: linear-gradient(135deg, #0a324afd, #20395a);
  padding: 30px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Update styling for input fields */
#height,
#weight {
  width: 100%;
  max-width: 300px;
  height: 50px;
  margin-top: 20px;
  padding: 10px;
  border: none;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 18px;
  outline: none;
  transition: background-color 0.3s ease;
}

#height:focus,
#weight:focus {
  background-color: rgba(255, 255, 255, 0.4);
}

/* Update styling for weight guide */
#weight-guide {
  margin-top: 15px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
}

/* Update styling for the results */
#results {
  font-size: 35px;
  margin-top: 20px;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

/* Update styling for the button */
button {
  width: 200px;
  height: 50px;
  margin-top: 30px;
  background: linear-gradient(135deg, #5c18a4, #8b5fbf);
  border: none;
  border-radius: 25px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

/* Update styling for the heading */
h1 {
  margin-top: 0;
  font-size: 28px;
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Update styling for the right section */
.right {
  width: calc(100% - 575px);
  background-image: url(https://medworldobesity.com/wp-content/uploads/2022/01/medworld-bmi-calculator-1.jpg);
  background-color: #212121;
  background-size: cover;
  background-position: center;
}

/* Update styling for the main section */
.main {
  width: 100%;
  background: linear-gradient(135deg, #8b5fbf, #5c18a4);
  display: flex;
  border-radius: 20px;
  overflow: hidden;
}
