/* /Components/ContactForm.razor.rz.scp.css */
.form-block[b-hg2k4be5fc] {
  position: relative;
  font-family: Inter;
}
.form-block[b-hg2k4be5fc]  #contact-form {
  display: flex;
  flex-direction: column;
  gap: 2.9rem;
}
@media (max-width: 992px) {
  .form-block[b-hg2k4be5fc]  #contact-form {
    gap: 2rem;
  }
}
.form-block[b-hg2k4be5fc]  #contact-form input,
.form-block[b-hg2k4be5fc]  #contact-form textarea {
  width: 100%;
  height: 3.2rem;
  padding-inline-end: 2rem;
  color: var(--txt-color-6);
  border: none;
  border-block-end: 0.1rem solid var(--bg-color-6);
  background: transparent;
  font-size: var(--txt-s);
  line-height: 158%;
  padding-block-end: 1rem;
}
.form-block[b-hg2k4be5fc]  #contact-form input.invalid,
.form-block[b-hg2k4be5fc]  #contact-form textarea.invalid {
  border-block-end: 0.1rem solid var(--color-danger);
}
.form-block[b-hg2k4be5fc]  #contact-form input::placeholder,
.form-block[b-hg2k4be5fc]  #contact-form textarea::placeholder {
  color: var(--txt-color-6);
}
.form-block[b-hg2k4be5fc]  #contact-form textarea {
  overflow: hidden;
  min-width: 100%;
  max-width: 100%;
  min-height: 3.2rem;
}
.form-block[b-hg2k4be5fc]  #contact-form button {
  background: var(--bttn-color-2);
  padding: 1rem 2.5rem;
  color: var(--txt-color-3);
  font-size: var(--txt-s);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
  margin-block-start: 3.1rem;
}
@media (max-width: 992px) {
  .form-block[b-hg2k4be5fc]  #contact-form button {
    margin-block-start: 2rem;
  }
}
.form-block[b-hg2k4be5fc]  #contact-form button:hover {
  background: #0076BA;
}
.form-block[b-hg2k4be5fc]  #contact-form .grecaptcha-privacy-policy {
  margin-inline: auto;
  font-size: var(--txt-xxs);
  line-height: var(--txt-xxs-lh);
  margin-block-start: -2rem;
  font-weight: 300;
}
@media (max-width: 992px) {
  .form-block[b-hg2k4be5fc]  #contact-form .grecaptcha-privacy-policy {
    margin-block-start: -1rem;
  }
}
.form-block[b-hg2k4be5fc]  #contact-form .grecaptcha-privacy-policy a {
  text-decoration: underline;
}
.form-block #sending-indicator[b-hg2k4be5fc] {
  display: none;
  position: absolute;
  bottom: 12rem;
  inset: 0;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-secondary);
  height: calc(100% - 6rem);
  opacity: 0.8;
}
@media (max-width: 992px) {
  .form-block #sending-indicator[b-hg2k4be5fc] {
    height: calc(100% - 10.3rem);
  }
}
.form-block #sending-indicator.sent-indicator[b-hg2k4be5fc] {
  display: flex;
}
.form-block #sending-indicator .loading-indicator.sending[b-hg2k4be5fc] {
  max-width: 250px;
  max-height: 250px;
  width: 100%;
  height: 100%;
}
@media (max-width: 290px) {
  .form-block #sending-indicator .loading-indicator.sending[b-hg2k4be5fc] {
    all: unset;
    width: 100vw;
    height: calc(100vw - 4rem);
  }
}
.form-block #sending-indicator .loading-indicator.sending .lets-check-icon[b-hg2k4be5fc] {
  display: none;
}
.form-block #sending-indicator .loading-indicator.sent[b-hg2k4be5fc] {
  width: 100%;
  text-align: center;
}
.form-block #sending-indicator .loading-indicator.sent .loader-text[b-hg2k4be5fc] {
  width: 100%;
  max-width: calc(50% - 2rem);
}
.form-block #sending-indicator .loading-indicator.sent .loader-text .lets-check-icon[b-hg2k4be5fc] {
  margin-inline: auto;
  background-color: #62AD01;
  width: 8rem;
  height: 8rem;
}
@media (max-width: 280px) {
  .form-block #sending-indicator .loading-indicator[b-hg2k4be5fc] {
    width: 220px;
    height: 220px;
  }
}
.form-block #sending-indicator .loading-indicator .loader[b-hg2k4be5fc] {
  --border-width: 10px;
  width: 100%;
  height: 100%;
  border: var(--border-width) solid #f3f3f3;
  border-radius: 50%;
  border-bottom: var(--border-width) solid var(--bg-primary-2);
  border-top: var(--border-width) solid var(--bg-primary-2);
  border-left: var(--border-width) solid var(--bg-primary-2);
  animation: spin-b-hg2k4be5fc 2s linear infinite;
}
@keyframes spin-b-hg2k4be5fc {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.form-block #sending-indicator .loading-indicator .loader-text[b-hg2k4be5fc] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--bg-primary-2);
  font-weight: 700;
}
