* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.product__image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}
.product__image {
    max-width: 300px;
    display: block;
}
.order-form__body {
    position: relative;
    border-radius: 10px;
    padding: 30px 15px;
}

.order-form__title {
    text-align: center;
}

.order-form__price {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.order-form__price-new {
    font-weight: 800;
    font-size: 32px;
    color: #0D8751;
}

.order-form__price-old {
    font-weight: 500;
    font-size: 24px;
    text-decoration-line: line-through;
    color: #9B9A9A;
}

.order-form__timer {
    background: #F6F6F6;
    font-weight: 800;
    margin: 20px -15px 0;
}

.order-form__field {
    position: relative;
    margin-top: 20px;
}

.order-form__field input {
    position: relative;
    display: block;
    width: 100%;
    border: 1px solid #BEBEBE;
    background: transparent;
    padding: 19px 20px 6px;
    border-radius: 10px;
    line-height: 1;
    z-index: 2;
    outline: none;
}

[dir=rtl] .order-form__field input {
    text-align: right;
}

[dir=rtl] .order-form__field input[type=tel] {
    direction: ltr;
}

.order-form__field input:-webkit-autofill,
.order-form__field input:-webkit-autofill:focus {
    transition: background-color 0s 600000s, color 0s 600000s;
}

.order-form__field input:focus {
    border: 1px solid #C1B699;
}

.order-form__field input~label {
    position: absolute;
    z-index: 1;
    font-weight: 400;
    top: 23px;
    left: 20px;
    transform: translateY(-50%);
    transition: font-size 0.25s, top 0.25s, opacity 0.25s;
}

[dir=rtl] .order-form__field input~label {
    left: auto;
    right: 20px;
}

.order-form__field input~label span {
    color: #BEBEBE;
}

.order-form__field input::-webkit-input-placeholder {
    color: transparent;
}

.order-form__field input::-moz-placeholder {
    color: transparent;
}

.order-form__field input:-ms-input-placeholder {
    color: transparent;
}

.order-form__field input::-ms-input-placeholder {
    color: transparent;
}

.order-form__field input::placeholder {
    color: transparent;
}

.order-form__field input:focus~label,
.order-form__field input:valid:not(:placeholder-shown)~label,
.order-form__field input:invalid:not(:placeholder-shown)~label {
    font-size: 10px;
    top: 9px;
    opacity: 0.5;
}

.order-form__btn {
    font-family: inherit;
    position: relative;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    background: linear-gradient(0deg, #4B983F 0%, #F6F6F6 100%);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    overflow: hidden;
    height: 60px;
    width: 100%;
    max-width: 295px;
    margin: 30px auto 0;
}
.order-form__btn span {
  position: relative;
  z-index: 2;
}
.order-form__btn:before {
    position: absolute;
    content: "";
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.25s;
    background: linear-gradient(0deg, #0D8751 0%, #4B983F 100%);
    z-index: 1;
}
.order-form__btn:hover:before {
  opacity: 1;
}