@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/*CSS for the FORM HTML*/
.form-container {
  max-width: 1100px;
  width: 100%;
  background: transparent;
  border-radius: 6px;
  padding: 20px 40px 60px 40px; /* Increased bottom padding */
 /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);*/
  margin: 108px auto 40px auto; /* Added margin to the top, bottom, and horizontally centered */
  box-shadow: 0 0 5px #cccccc;
}

.form-container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-container .content .left-side {
  width: 28%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}

.content .left-side .details {
  margin: 14px;
  text-align: center;
}

.content .left-side .details i {
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 10px;
}

.content .left-side .details i:hover{
  color: #24262b;

}

.content .left-side .details .topic {
  font-size: 18px;
  font-weight: 500;
}

.content .left-side .details .text-one,
.content .left-side .details .text-two {
  font-size: 14px;
  color: #afafb6;
}

.form-container .content .right-side {
  width: 75%;
  margin-left: 35px; /* Adjusted margin-left */
}

.content .right-side .topic-text {
  font-size: 23px;
  font-weight: 600;
  color: white;
}

.right-side .input-box {
  height: 55px;
  width: 100%;
  margin: 12px 0;
}

.right-side .input-box input,
.right-side .input-box textarea {
  height: 100%;
  width: 100%;
  border: 2px solid #78788c;
  outline: none;
  font-size: 16px;
  background: transparent;
  border-radius: 10px;
  box-shadow: 0 0 3px #cccccc;
  padding: 0 15px;
  resize: none;
}

.right-side .input-box input::placeholder,
.right-side .input-box textarea::placeholder {
  color: #afafb6; /* Change placeholder text color */
}



.right-side .message-box {
  min-height: 110px;
}

.right-side .input-box textarea {
  padding-top: 6px;
}

.right-side .button {
  display: inline-block;
  margin-top: 12px;
}

.right-side .button input[type="submit"] {
  font-size: 18px;
  box-shadow: 0 0 5px #cccccc;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px 12px;
  margin: 8px 0 0;
  border: 2px solid #78788c;
  background: transparent;
  color: #ffffff;
  border-radius: 10px;
}

.right-side .button input[type="submit"]:hover {
  background: #78788c;
  color: #ffffff; /* Change text color to white on hover */
}


@media (max-width: 950px) {
  .form-container {
    width: calc(100% - 32px);
    padding: 24px; /* Adjusted padding */
  }

  .form-container .content .left-side {
    width: 32%;
  }

  .form-container .content .right-side {
    width: 68%;
    margin-left: 24px;
  }
}

@media (max-width: 820px) {
  .form-container {
    margin: 24px auto 40px; /* Centering the container horizontally */
    height: 100%;
  }

  .form-container .content {
    flex-direction: column-reverse;
  }

  .form-container .content .left-side {
    width: 100%;
    flex-direction: row;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .form-container .content .left-side::before {
    display: none;
  }

  .form-container .content .right-side {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .form-container {
    width: calc(100% - 20px);
    padding: 20px 16px 32px;
  }

  .content .left-side .details {
    width: 100%;
    margin: 10px 0;
  }
}

.contact-honeypot {
  display: none;
}

.content .right-side p {
  color: #f0f0f0;
}

#contactStatus {
  margin-top: 16px;
}

.right-side .button input:disabled {
  opacity: 0.65;
  cursor: wait;
}
