.form-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 900px;
  /* background: linear-gradient(to right, #000428, #004e92); */
  /* backdrop-filter: blur(12px); */
  background-image: url(../images2/blured_form_image.webp);
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  /* box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4); */
  overflow: hidden;
  color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.form-left {
  flex: 1;
  padding: 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
}

.form-left .logo {
  width: 80px;
  margin-bottom: 15px;
}

.form-left h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.form-right {
  flex: 1;
  padding: 40px;
}

form {
  display: flex;
  flex-direction: column;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10;
}

.close-btn:hover {
  color: #595757;
}


input, select {
  background: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  color: #fff;
  padding: 10px 5px;
  margin-bottom: 20px;
  font-size: 1em;
  width: 100%;
}

input:focus, select:focus {
  outline: none;
  border-bottom: 1.5px solid #f4b545;
}

.phone-wrapper {
  display: flex;
  gap: 10px;
}

.phone-wrapper select {
  width: 90px;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.9em;
}

.checkbox-wrapper input[type="checkbox"] {
  flex: 0 0 10%;
  margin: 0;
  height: 16px;
  width: 16px;
}

.checkbox-wrapper label {
  flex: 0 0 90%;
  margin-left: 10px;
  line-height: 1.4;
}

.checkbox-wrapper label a{
  color: white;
  text-decoration: underline;
}

.button1 {
  padding: 12px;
  background-color: #f4b545;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  color: #000;
}

.button1:hover {
  background-color: #e29a14;
}

#enqStatusMessage {
  margin-top: 10px;
  font-size: 14px;
}

#brochureFormContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}


.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}


@media (max-width: 768px) {
  .form-container {
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
  }

  .form-left, .form-right {
    padding: 25px;
  }

  .phone-wrapper {
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }

  .phone-wrapper select {
    width: 100%;
  }

    .phone-wrapper select {
    width: 70px; 
    flex-shrink: 0;
  }

  .phone-wrapper input {
    flex: 1; 
  }
}
