#contact-us-page {
  display: flex;
  flex-direction: column;
}
#contact-us-page section {
  flex: 1 1 0;
}
.solu-blue-text{
  color: var(--solu-blue-600);
}
#contact-form {
  position: relative;
  border-radius: 8px;
  background-color: #062133;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0.75rem 1.25rem;
}

#contact-form .form-helper {
  padding-top: 0.25rem;
  font-size: 0.75rem;
  min-height: 0.75rem;
}
#contact-form .form-label, #contact-form .form-helper, #contact-form .form-group label {
  color: #ffffff;
}

#contact-form .form-group {
  display: flex;
  flex-direction: column;
}
#contact-form .form-group label {
  margin: 0.5em 0;
  opacity: 0.6;
}
#contact-form .form-group label .asterisk{
  color: #FF2424;
}
#contact-form input,
#contact-form textarea {
  color: #ffffff;
  border: 1px solid #84898c;
  border-radius: 10px;
  background: none;
  padding: 0.75rem;
  resize: none;
}
#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border: 1px solid var(--solu-blue-600);
}
@keyframes spin{
  from {transform: rotateZ(0deg);}
  to {transform: rotateZ(360deg);}
}
#submit-form-btn {
  margin: 0.75rem 0;
  padding: 0.75rem 2.75rem;
}
#submit-form-btn .spin {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear 0s infinite;
}

#contact-form #send-message-state{
  display:none;
}
#contact-form #send-message-state.active{
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  color: #fff;
  border-radius: 10px;
  top: 0;
  left: 0;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9;
}

.contact-error a{
  text-decoration: underline;
  color: #fff;
}
#send-message-state .close-btn-bar {
  height: 1.5px;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  #contact-us-page {
    flex-direction: row;
    position: relative;
  }
  .contact-us-text-area{
    margin-right: 2.5rem;
  }
  .shape-bg {
    top: -84px;
    right: 0;
  }
  .shape-bg:nth-child(2) {
    top: 90%;
    left: 0;
  }
  #contact-form {
    padding: 2rem 2.75rem 2.25rem;
    margin: 1.75rem;
  }
}
