.form-row {
    margin-bottom: 16px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.form-row label {
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.form-row input,
.form-row select {
    height: 41px;
    border: 1px solid var(--orange);
    width: 100%;
    padding: 5px 10px;
}

.form-row.has-error input {
    border-color: #ed4448;
}

.has-error input:not([type="checkbox"]) {
    background: #fff url(../../images/svgs/alert.svg) no-repeat right 10px center / 15px;
    padding-right: 30px;
}

.error-msg {
    color: #ed4448;
    font-size: 10px;
    line-height: 1;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 2px;
}

.has-error .error-msg {
    display: block;
}

.have-form_component .pwd-hints {
    margin: 8px 0;
}

.have-form_component .pwd-hints span {
    font-size: 10px;
    line-height: 10px;
    color: var(--black);
    display: inline-block;
    font-weight: 300;
}

.have-form_component .pwd-hints .checkbox {
    width: 8px;
    height: 8px;
    border: 0.5px solid #737373;
    position: relative;
}

.form-row .checker {
    display: flex;
    align-items: start;
}

.form-row .checker input[type="checkbox"] {
    appearance: none;
    background: #fff;
    margin-right: 18px;
    width: 26px !important;
    height: 26px !important;
    border: 1px solid var(--orange);
    border-radius: 2px;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

.form-row .checker input[type="checkbox"]::before {
    content: "";
    width: 15px;
    height: 15px;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 15px 15px var(--orange);
    background-color: var(--white);
}

.form-row .checker input[type="checkbox"]:checked::before {
    transform: scale(1) !important;
}

.form-row .checker span {
    font-size: 10px;
    line-height: 12px;
    font-weight: 300;
}

.submit-btn {
    background: var(--black);
    height: 41px;
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    width: 100%;
    border: none;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-btn.disabled,
.submit-btn:disabled {
    pointer-events: none;
    opacity: 0.65;
}

.form-submit-loader {
    display: none;
    position: relative;
    width: 15px;
    height: 15px;
    right: -10px;
}

.form-submit-loader span {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: formSubmitLoader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}

.form-submit-loader span:nth-child(1) {
    animation-delay: -0.45s;
}

.form-submit-loader span:nth-child(2) {
    animation-delay: -0.3s;
}

.form-submit-loader span:nth-child(3) {
    animation-delay: -0.15s;
}

.thankyou-title {
    font-size: 32px;
    line-height: 36px;
}

.thankyou-box img {
    width: 100px;
    margin: 0px auto 20px;
  }
  
  .thankyou-box .link {
    color: var(--black);
    font-weight: 700;
  }
@keyframes formSubmitLoader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.have_acc {
    font-size: 10px;
    line-height: 10px;
}

.pwd-hints .error .checkbox {
    border-color: #ed4448;
}

.pwd-hints .success .checkbox {
    border: none;
}

.pwd-hints .success .checkbox:before {
    content: 'L';
    position: absolute;
    left: -2px;
    top: 0px;
    transform: scaleX(-1) rotate(-45deg) translateY(-4px);
    font-size: 11px;
    font-weight: 500;
    color: #0BB740;
}

@media all and (min-width: 992px) {
    .form-row .checker {
        align-items: center;
    }
}