.formSection {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 800px;
  max-width: 1032px;
  padding: 20px 0 0 0;
  box-sizing: border-box;
}

.buttondv{
  display: flex;
  justify-content: center;
}

.input {
  height: 2.75rem;
  width: 100%;
  border-radius: 15px;
  border: none;
  background-color: #ffffff !important;
  padding: 0 0.9625em;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875em;
  color: #262f40;
  outline: none;
}

.input::placeholder {
  color: #262f40;
  opacity: 0.55;
}

.submitButton {
  height: 2.75em;
  width: 100%;
  border-radius: 15px;
  border: none;
  background-color: #fec91a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.submitButton:hover {
  background-color: #ffd54f;
}

.submitButton span {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #29323c;
}

.buttonIcon {
  object-fit: contain;
}

@media (max-width: 768px) {
  .formSection {
    padding: 0px;
  }
  .input {
    font-size: 14px;
  }  
  .submitButton span {
    font-size: 14px;
  }
  .submitButton {
    height: auto;
    padding: 10px;
}
.errorMessage {
  
  font-size: 14px;
}
}

.errorMessage {
  color: #FF6B6B;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
@media screen and (max-width:992px) {
  .formSection {

    width: 100%;
    max-width: 100%;
 
  }
}

@media screen and (max-width:480px) {
.input {
  font-size: 9px;
}
.errorMessage {
  font-size: 9px;
}
}