.formContainer {
    max-width: 66.666667%;
    margin: 0 auto;
}
.formInner {
    -webkit-box-shadow: 0px 10px 10px 0px rgb(0 0 0 / 3%);
    -moz-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.03);
    box-shadow: 0px 10px 10px 0px rgb(0 0 0 / 3%);
    padding: 1.5rem;
    background-color: #fff;
}

.formInner h3 {
    font-weight: 500;
    text-align: center;
    font-size: 1.25rem;
    margin: 8px 0 16px;
    text-transform: uppercase;
}

.formRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0 -8px;
}

.formCol {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    padding: 0 8px;
    margin-bottom: 8px;
}

.formGroup label {
    display: block;
    font-size: 14px;
    color: #222;
    line-height: 22px;
    margin-bottom: 2px;
}

body .formGroup input, body input:not([type="submit"]):not([type="checkbox"]) {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 0.4rem;
    font-size: 0.8rem;
    color: #222;
    height: unset;
    line-height: unset;
    max-height: 35px;
}

body .formGroup input:focus,body input:not([type="submit"]):not([type="checkbox"]):focus{
    border: 1px solid rgba(0, 0, 0, .1);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

body .formGroup select {
    border-radius: unset;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.8rem;
    color: #222;
    max-height: 35px;
    line-height: 35px;
}
.formGroup a.createAccountBtn {
    cursor: pointer;
    border: none;
    padding: 12px 34px;
    background: var(--primary-color);
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    width: 100%;
    text-align: center;
    margin: 24px 0 15px;
}

.terms_condition {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

body .terms_condition input {
    width: unset;
}

body .terms_condition label {
    margin: 0 0 0 6px;
}

body .terms_condition label a {
    color: var(--primary-color);
}

/****************** Loader style (starts)*****************/
div#site_loader {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.6);
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	z-index: 9999;
}
/****************** Loader style (ends)*****************/