.form-twenty-block {
  position: relative;
  overflow: hidden;
  z-index: 0;
  border-radius: 30px;
  padding: 30px;
  z-index: 1;
  display: flex;
  gap: 45px;
  padding-left: 60px;
  background: var(--colors-main);
}
.form-twenty-block::after {
  position: absolute;
  content: "";
  width: 661px;
  height: 194px;
  left: 55px;
  top: 372.15px;
  z-index: -1;
  background: #8CF555;
  filter: blur(159.375px);
  transform: rotate(-7.11deg);
}
.form-twenty-block::before {
  position: absolute;
  content: "";
  width: 2611px;
  height: 1376px;
  left: -828px;
  top: -443px;
  z-index: -1;
  background: radial-gradient(56.61% 56.61% at 57.28% 22.1%, #5CAC6D 11.43%, #388860 33.77%, #A0DE80 87.81%);
  filter: blur(265.625px);
}
.form-twenty-block > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.form-twenty-block .block-tag {
  background: var(--bg-primary-main);
  border-radius: 100px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}
.form-twenty-block .block-tag:not(:last-child) {
  margin-bottom: 15px;
}
.form-twenty-block .block-tag img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.form-twenty-block .block-tag__text {
  color: var(--text-primary-main);
}
.form-twenty-block__content {
  width: 470px;
  height: auto;
  display: flex;
  flex-direction: column;
}
.form-twenty-block__title {
  color: var(--bg-primary-main);
}
.form-twenty-block__title:not(:last-child) {
  margin-bottom: 30px;
}
.form-twenty-block__text {
  color: var(--text-alt-main);
  margin-bottom: 0;
}
.form-twenty-block__socials {
  margin-top: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}
.form-twenty-block__socials-container {
  display: flex;
  gap: 10px;
}
.form-twenty-block__socials-subtitle {
  color: var(--text-alt-head);
  font-weight: 800;
}
.form-twenty-block__socials-item {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background-color: var(--bg-primary-main);
  transition: all 0.3s ease-in;
}
.form-twenty-block__socials-item img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}
@media (min-width: 992px) {
  .form-twenty-block__socials-item:hover {
    background-color: var(--colors-main);
  }
  .form-twenty-block__socials-item:hover img {
    filter: grayscale(1) brightness(1000%);
  }
}
.form-twenty-block__form {
  width: 33%;
  background: var(--bg-primary-main);
  border-radius: 30px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.form-twenty-block__form .agreement {
  align-items: flex-start;
}
.form-twenty-block__form .title_form {
  font-weight: 800;
}
.form-twenty-block__form .form__inputs {
  margin-top: 30px;
}
.form-twenty-block__form .form__inputs input {
  background: rgba(255, 255, 255, 0.2509803922);
  outline: 1px solid var(--bg-primary-stroke);
  border: 1px solid var(--bg-primary-stroke);
  color: var(--text-alt-head) !important;
}
.form-twenty-block__form .form__inputs input:focus, .form-twenty-block__form .form__inputs input:hover {
  background: var(--bg-primary-main);
  color: var(--text-primary-head) !important;
}
.form-twenty-block__form .form__inputs input:focus + label, .form-twenty-block__form .form__inputs input:hover + label {
  color: var(--text-primary-second) !important;
}
.form-twenty-block__form .form__inputs input:-webkit-autofill, .form-twenty-block__form .form__inputs input:-webkit-autofill:hover, .form-twenty-block__form .form__inputs input:-webkit-autofill:focus, .form-twenty-block__form .form__inputs input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--text-primary-head) !important;
  -webkit-box-shadow: 0 0 0 1000px var(--bg-primary-main) inset !important;
  transition: background-color 5000s ease-in-out 0s;
  color: var(--text-primary-head) !important;
}
.form-twenty-block__form .form-v2__input:not(:last-child) {
  margin-bottom: 10px;
}
.form-twenty-block__form .form-v2__policy-checkbox {
  margin-top: 30px;
}
.form-twenty-block__form .form-v2__policy-checkbox:not(:last-child) {
  margin-bottom: 15px;
}
.form-twenty-block__form .form-v2__policy-checkbox p {
  color: var(--text-primary-main);
}
.form-twenty-block__form .form-v2__policy-checkbox p a {
  color: var(--hover-main);
  text-decoration: underline;
}
.form-twenty-block__form .form-v2__btn {
  width: 100%;
}
.form-twenty-block__form .form-v2__btn .btn {
  width: 100%;
}
.form-twenty-block__image {
  padding: 30px;
  position: absolute;
  right: 0;
  top: 0;
  width: 32%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
  z-index: -1;
  border-radius: 25px;
  overflow: hidden;
}
.form-twenty-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

@media (max-width: 1240px) {
  .form-twenty-block {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .form-twenty-block:not(.alignfull) {
    padding-left: 15px;
    padding-right: 15px;
  }
  .form-twenty-block__form {
    width: auto;
    flex: 1;
  }
  .form-twenty-block__image {
    display: none;
  }
}
@media (max-width: 1025px) {
  .form-twenty-block__image {
    display: none;
  }
  .form-twenty-block__content {
    width: 50%;
  }
}
@media (max-width: 769px) {
  .form-twenty-block:not(.alignfull), .form-twenty-block.alignfull .container {
    flex-direction: column;
  }
  .form-twenty-block .block-tag img {
    width: 18px;
    height: 18px;
  }
  .form-twenty-block__content {
    width: 100%;
  }
  .form-twenty-block__socials {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .form-twenty-block__socials-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .form-twenty-block__socials-item {
    width: 45px;
    height: 45px;
  }
  .form-twenty-block__socials-item img {
    width: 18px;
    height: 18px;
  }
  .form-twenty-block__title:not(:last-child) {
    margin-bottom: 15px;
  }
  .form-twenty-block__form {
    padding: 20px 15px;
  }
}
@media (max-width: 498px) {
  .form-twenty-block__socials {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .form-twenty-block:not(.alignfull), .form-twenty-block.alignfull .container {
    gap: 20px;
  }
}/*# sourceMappingURL=block.css.map */