.w60 {
  position: relative;
  width: 100%;
  min-height: 208px;
  padding: 16px;
  box-sizing: border-box;
  font-family: Muli, "Arial", "sans-serif";
  letter-spacing: normal;
  --breakpoint: 768px;
}
.w60__inner > * {
  position: relative;
  z-index: 1;
}
.w60__background {
  z-index: 0;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 1920/384;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.w60__form {
  position: relative;
  z-index: 1;
  max-width: 1190px;
  min-height: 384px;
  padding: 40px 0;
  margin: auto;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.8705882353);
}
.w60__form__control {
  --padding-x: 12px;
  position: relative;
  --color: #666;
  --label-color: #666;
  --box-shadow: inset 0px 0px 0px 1px #999;
}
@media screen and (min-width: 768px) {
  .w60__form__control {
    flex: 1 1 120px;
  }
  .w60__form__control--email {
    flex: 2 1 160px;
  }
}
.w60__form__control:not(.w60__form__control--error):has(input:focus), .w60__form__control:not(.w60__form__control--error):has(input:focus:hover) {
  --color: #666;
  --label-color: #00abbe;
  --box-shadow: inset 0px 0px 0px 2px #00abbe;
}
.w60__form__control:not(.w60__form__control--error):has(input:hover) {
  --box-shadow: inset 0px 0px 0px 2px #999;
}
.w60__form__control--error {
  --color: #dc3545;
  --label-color: #dc3545;
  --box-shadow: inset 0px 0px 0px 1px #dc3545;
}
.w60__form__control label {
  user-select: none;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: var(--padding-x);
  transform: translateY(-50%);
  transition: top 0.2s linear, font-size 0.2s linear;
  padding: 0 12px;
  padding: 0;
  background: #fff;
  color: var(--label-color);
}
.w60__form__control__input {
  padding: 4px var(--padding-x);
  min-width: 0;
  width: 100%;
  height: 52px;
  box-sizing: border-box;
  border-radius: 2px;
  transition: box-shadow 0.2s linear;
  border: none;
  outline: none;
  box-shadow: var(--box-shadow);
  color: var(--color);
}
.w60__form__control__input::placeholder {
  color: transparent;
  visibility: hidden;
}
.w60__form__control__input:focus + label, .w60__form__control__input:not(:placeholder-shown) + label {
  padding: 0 4px;
  font-size: 12px;
  top: 0;
}
.w60__form__button {
  border: none;
  outline: none;
  padding: 0 8px;
  min-width: 88px;
  min-height: 52px;
  font-family: inherit;
  letter-spacing: inherit;
  font-size: 16px;
  font-weight: 600;
}
.w60__form__button--submit {
  background: #6db71b;
  color: #fff;
}
.w60__form__button--submit:hover {
  background: #8ac549;
}
.w60__form__inner {
  max-width: 586px;
}
.w60__form__inner > * {
  margin: 0;
}
.w60__form__inner > *:not(:last-child) {
  margin-bottom: 24px;
}
.w60__form__header > * {
  margin: 0;
}
.w60__form__header > *:not(:last-child) {
  margin-bottom: 8px;
}
.w60__form h1 {
  line-height: 48px;
  font-size: 32px;
  font-weight: 600;
}
.w60__form h3 {
  line-height: 24px;
  font-size: 16px;
  font-weight: 500;
}
.w60__form__formElement {
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .w60__form__formElement {
    flex-direction: row;
  }
}
.w60__payment__row {
  --columns: 4;
  --gap: 6px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--gap);
  max-width: 320px;
  margin: auto;
}
.w60__payment__row > * {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc((100% - (var(--columns) - 1) * var(--gap)) / var(--columns));
}
@media screen and (min-width: 768px) {
  .w60__payment__row {
    max-width: 586px;
  }
  .w60__payment__row > * {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
  }
}
.w60__payment__method {
  object-fit: contain;
  display: block;
  min-width: 0;
}
.w60__form__control input{
  height: 100% !important;
}