@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.eot');
    src: local('Open Sans Regular'), local('OpenSans-Regular'), url('../fonts/OpenSans-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/OpenSans-Regular.woff') format('woff'), url('../fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: 'Open Sans', sans-serif;
}

.heading {
    display: flex;
    align-items: center;
}

.heading img {
    height: 44px;
    margin-right: 10px;
}

.heading p {
    font-size: 18px;
}

.question {
    position: relative;
    font-size: 12px;
    color: #535c69;
    display: flex;
    margin-top: 40px;
}

.features {
    margin-top: 30px;
}

.question:before {
    content: '';
    display: block;
    background-image: url('../images/question.svg');
    width: 14px;
    height: 14px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
    margin-top: 3px;
}

.features ul {
    list-style: none;
    padding-left: 20px;
    margin-top: 5px;
}

.features li {
    position: relative;
}

.features li:before {
    display: block;
    content: '';
    background-image: url('../images/blue-check.svg');
    width: 12px;
    height: 12px;
    position: absolute;
    left: -20px;
    top: 8px;
    background-repeat: no-repeat;
}

.ui-btn-success {
    align-items: center;
    background-color: rgb(187, 237, 33);
    border-bottom-color: rgb(187, 237, 33);
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-collapse: separate;
    border-image-outset: 0;
    border-image-repeat: stretch;
    border-image-slice: 100%;
    border-image-source: none;
    border-image-width: 1;
    border-left-color: rgb(187, 237, 33);
    border-left-style: solid;
    border-left-width: 1px;
    border-right-color: rgb(187, 237, 33);
    border-right-style: solid;
    border-right-width: 1px;
    border-top-color: rgb(187, 237, 33);
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    border-top-style: solid;
    border-top-width: 1px;
    box-shadow: none;
    box-sizing: border-box;
    color: rgb(83, 92, 105);
    cursor: pointer;
    display: inline-block;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-stretch: 100%;
    font-style: normal;
    font-variant-caps: normal;
    font-variant-east-asian: normal;
    font-variant-ligatures: normal;
    font-variant-numeric: normal;
    height: 39px;
    justify-content: center;
    line-height: 37px;
    outline-color: rgb(83, 92, 105);
    outline-style: none;
    outline-width: 0px;
    padding-bottom: 0px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 0px;
    position: relative;
    text-align: center;
    font-weight: 600;
    text-decoration-color: rgb(83, 92, 105);
    text-decoration-line: none;
    text-decoration-style: solid;
    text-decoration-thickness: auto;
    text-indent: 0px;
    text-shadow: none;
    text-transform: uppercase;
    transition-delay: 0s, 0s, 0s, 0s;
    transition-duration: 0.16s, 0.16s, 0.16s, 0.16s;
    transition-property: background-color, color, opacity, border-color;
    transition-timing-function: linear, linear, linear, linear;
    user-select: none;
    vertical-align: middle;
    white-space: nowrap;
    -webkit-border-horizontal-spacing: 0px;
    -webkit-border-vertical-spacing: 0px;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    -webkit-font-smoothing: antialiased;
}

.progress-container {
    display: flex;
    flex-wrap: nowrap;
    align-items: start;
    padding-top: 20px;
}

.progress-container .circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #bababc;
}

.progress-container .complete .circle {
    background-color: #0abaee;
}

.progress-container .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0px 20px;
}

.progress-container .step.complete {
    color: #0abaee;
}

.progress-container .step.complete .circle {
    background-image: url('../images/white-check.svg');
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
}

.progress-container .step.inprogress .circle {
    background-image: url('../images/loader.gif');
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
}

.progress-container .circle:before {
    content: '';
    display: block;
    height: 3px;
    width: calc(50% + 10px);
    left: 50%;
    background: #bababc;
    top: 18px;
    position: absolute;
    z-index: -1;
}

.progress-container .circle:after {
    content: '';
    display: block;
    height: 3px;
    width: calc(50% + 10px);
    left: -10px;
    background: #bababc;
    top: 18px;
    position: absolute;
    z-index: -1;
}

.progress-container .step:last-child .circle:before {
    content: unset;
}

.progress-container .step:first-child .circle:after {
    content: unset;
}

.progress-container .complete .circle:before {
    background: #0abaee;
}

.progress-container .complete .circle:after {
    background: #0abaee;
}

.login-container input[type=text],
.login-container input[type=password]
{
    z-index: 1;
    display: block;
    overflow: hidden;
    box-sizing: border-box;
    margin: 0;
    padding: 0 11px;
    width: 100%;
    height: var(--ui-field-size);
    outline: 0;
    border: 1px solid #c6cdd3;
    border-radius: 2px;
    background-color: #fff;
    color: #535c69;
    vertical-align: middle;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    font: 400 14px "Open Sans",Helvetica,Arial,sans-serif;
    transition: border .3s ease,background-color .3s ease,color .3s ease,padding .3s ease;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    line-height: 40px;
}


.login-container .login-title {
    margin-bottom: 10px;
    display: block;
}

.input-group {
    margin-bottom: 15px;
}

.login-container {
    max-width: 300px;
}