.intro {
  position: relative;
  max-width: 100%;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  background-color: #ffffff;
 }

 .chan {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 50%;
  justify-content: space-evenly;
  align-items: center;
  padding: 40px;
  
 }

 .intro h1 {
  padding: 20px;
  width: 100%;
  min-height: max-content;
  font-size: 2em;
  font-weight: 500;
 }

.intro p {
  padding: 20px;
  width: 100%;
  min-height: max-content;
  font-size: 1.1em;
  line-height: 1.6;
}
.form-container {
  position: relative;
  width: 40%;
  height: max-content;
  background: linear-gradient(#ffffff00, #ffffff00) padding-box,
  linear-gradient(145deg, transparent 35%,#dddddd, #898989) border-box;
  font-size: 1em;
  color: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  justify-content: left;
  box-sizing: border-box;
  border-radius: 6px;
  background-size: 200% 100%;
  animation: gradient 10s ease infinite;
  transition: all 1s ease-in-out;
  box-sizing: border-box;
  border: 1px solid #00000026;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.form-container:hover {
  box-shadow: rgba(0, 0, 0, 0.178) 0px 30px 90px, inset 0 0 40px #ffffff47;
}

.form-container .form {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: auto;
  gap: 20px;
  padding: 20px;
}

.form-container .form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-container .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #393939;
  font-weight: 600;
  font-size: 1em;
}

.form-container .form-group input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  color: #00000098;
  background-color: transparent;
  border: 1px solid #00000026;
}


.form-container .form-group input::placeholder {
  opacity: 0.5;
}

.form-container .form-group input:focus {
  outline: none;
  border-color: #0303b0ac;
}

.form-container .form-group textarea:focus {
  outline: none;
  border-color: #0303b0ac;
}

.form-container .form-submit-btn {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-self: flex-start;
  color: #111111b1;
  font-weight: 600;
  min-width: 100px;
  background: #ffffff00;
  border: 1px solid #ffffff;
  padding: 12px 16px;
  font-size: inherit;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.5s ease;
  margin: auto;
}

.form-container .form-submit-btn:hover {
  background-color: #e9e9e9;
  border-color: #fff;
  color: #056a00;
  transition: all 0.5s ease;
}
@media screen and (max-width: 769px) {
.intro {
  flex-direction: column;
  padding: 0;
  left: 0;
}
.chan {
  width: 75%;
  padding: 0;
  align-items: start;
 }
 .intro h1 {
  padding: 15px 0;
 }

.intro p {
  padding: 10px 0;
  width: 100%;
  min-height: max-content;
  font-size: 1.1em;
  line-height: 1.6;
}
.form-container {
  width: 80%;
  min-height: max-content;
  border-radius: 6px;
  padding: 20px;
  margin: 40px 0;
}
.form-container .form {
  width: 100%;
  gap: 20px 0;
  padding: 0;
}
.form-container .form-submit-btn {
    display: flex;
    color: #111111b1;
    font-weight: 600;
    margin-top: 0;
}
}