html, body {
    background-color: #fef6eb;
    color: #2c3e4f;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    height: 100vh;
    margin: 0;
    font-size: 14px;
    line-height: 1.42857143;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a, a:visited {
    color: #0083BB;
}

h1 {
    margin: 0 0 20px 0;
    padding: 0;
    text-align: center;
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

h1 img {
    max-width: 180px;
    width: 100%;
    display: inline-block;
    border-radius: 6px;
}

h2 {
    font-size: 22px;
    font-family: serif;
    font-weight: 400;
    margin: 0;
    padding: 10px 0 30px 0;
    color: #2c3e4f;
    text-align: center;
}

h2:after {
    content: '';
    display: block;
    height: 2px;
    width: 60px;
    margin: 30px auto 20px;
    background: #536061;
}

h2.has-error:before {
    content: "";
    background: transparent url('../images/sprite.png') no-repeat;
    background-position: 0 -64px;
    background-size: 32px auto;
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
}

p {
    margin: 0 0 10px;
}

.text-center {
    text-align: center;
}

.pull-right {
    float: right;
}

/*
 * Layout
 */
.form-cell {
    min-height: 100vh;
    max-width: 660px;
    background-color: #fff;
    border-right: 1px solid #ecf0f1;
    border-left: 1px solid #ecf0f1;
    margin: auto;
}

.outer-form-container {
    padding: 40px;
    width: 100%;
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color:#777;
}

.flex-center {
    /* align-items: center; */
    align-items: flex-start;
    display: flex;
    justify-content: center;
}

.position-ref {
    position: relative;
}

.code {
    border-right: 2px solid;
    font-size: 26px;
    padding: 0 15px 0 15px;
    text-align: center;
}

.message {
    font-size: 18px;
    text-align: center;
}

/*
 * Progress Output
 */

.btn-toggle-progress {
    background: #ecf0f1;
    color: #2b3e50;
    text-decoration: none;
    display: block;
    padding: 20px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    margin-top: 20px;
}

.btn-toggle-progress:hover {
    background: #0181b9;
    color: white;
}

.progress-output {
    margin-left: -20px;
    margin-right: -20px;
    padding-top: 20px;
}

.progress-output > div {
    padding: 10px 0;
}

.progress-output > div:nth-child(odd) {
    background-color: #f2f2f2;
}

.progress-output .progress-number {
    float: left;
    width: 40px;
    margin-left: 0;
    margin-right: 15px;
    text-align: right;
    color: #000000;
}

.progress-output .progress-line {
    display: block;
    margin-left: 55px;
    padding-right: 20px;
}