html, body {
    min-height: 100% !important;
    height: 100%;
}

.account_body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #888;
    line-height: 30px;
    text-align: center;
    vertical-align: middle !important;
    margin: auto !important;
}

a, a:hover, a:focus {
    color: #f35b3f;
    text-decoration: none;
    -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
}

h1, h2 {
    margin-top: 10px;
    font-size: 38px;
    font-weight: 100;
    color: #555;
    line-height: 50px;
}

h3 {
    font-size: 22px;
    font-weight: 300;
    color: #555;
    line-height: 30px;
}

h4 {
    font-size: 18px;
    font-weight: 300;
    color: #555;
    line-height: 26px;
}

img { max-width: 100%; }

::-moz-selection { background: #f35b3f; color: #fff; text-shadow: none; }
::selection { background: #f35b3f; color: #fff; text-shadow: none; }


/***** Top content *****/

.top-content { padding: 40px 0 170px 0; }

.top-content .text { color: #fff; }
.top-content .text h1 { color: #fff; }
.top-content .description { margin: 20px 0 10px 0; }
.top-content .description p { opacity: 0.8; }
.top-content .description a { color: #fff; }
.top-content .description a:hover,
.top-content .description a:focus { border-bottom: 1px dotted #fff; }

.form-box { padding-top: 40px; }

.js {
    padding: 25px; background: #fff;
    -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
    -webkit-box-shadow: 0px 8px 20px 4px rgba(0,0,0,0.18);
    -moz-box-shadow: 0px 8px 20px 4px rgba(0,0,0,0.18);
    box-shadow: 0px 8px 20px 4px rgba(0,0,0,0.18);
}
.js h3 { margin-top: 0; margin-bottom: 5px; text-transform: uppercase; }

.js-steps { overflow: hidden; position: relative; margin-top: 20px; }

.js-progress { position: absolute; top: 24px; left: 0; width: 100%; height: 1px; background: #ddd; }
.js-progress-line { position: absolute; top: 0; left: 0; height: 1px; background: #1C9DB7; }

.js-step { position: relative; float: left; width: 25%; padding: 0 5px; }

.js-step-icon {
    display: inline-block; width: 40px; height: 40px; margin-top: 4px; background: #ddd;
    font-size: 16px; color: #fff; line-height: 40px;
    -moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%;
}
.js-step.activated .js-step-icon {
    background: #fff; border: 1px solid #1C9DB7; color: #1C9DB7; line-height: 38px;
}
.js-step.active .js-step-icon {
    width: 48px; height: 48px; margin-top: 0; background: #1C9DB7; font-size: 22px; line-height: 48px;
}

.js-step p { color: #ccc; }
.js-step.activated p { color: #1C9DB7; }
.js-step.active p { color: #1C9DB7; }

.js fieldset { display: none; text-align: left; }

.js-buttons { text-align: right; }

.js .input-error { border-color: #f35b3f; }

/***** Media queries *****/

@media (min-width: 992px) and (max-width: 1199px) {}

@media (min-width: 768px) and (max-width: 991px) {}

@media (max-width: 767px) {

    .navbar { padding-top: 0; }
    .navbar.navbar-no-bg { background: #333; background: rgba(51, 51, 51, 0.9); }
    .navbar-brand { height: 60px; margin-left: 15px; }
    .navbar-collapse { border: 0; }
    .navbar-toggle { margin-top: 12px; }

    .top-content { padding: 40px 0 110px 0; }

}

@media (max-width: 415px) {

    h1, h2 { font-size: 32px; }

    .js { padding-bottom: 20px; }
    .js-buttons button { margin-bottom: 5px; }

    .js-step p {
        display: none;
    }

}

@media (max-width: 450px) {
    .btn-home {
        bottom: 0 !important;

    }
    .js-buttons {
        margin-bottom: 18px;
        text-align: center;
    }

    a.btn.btn-home {
        left: 33% !important;
    }
}

@media (max-width: 370px) {
    a.btn.btn-home {
        left: 28% !important;
    }
}





.js-step-note {
    padding-left: 10px;
    word-wrap: break-word;
    display: grid;
    grid-template-areas:
            'icon message';
    grid-template-columns: 5% 95%;
}

.js-step-note i {
    grid-area: icon;
    padding-right: 10px;
    vertical-align: middle !important;
    height: 100%;
    position: relative;
    top: calc(50% - 10px);
}

.js-step-note-warning {
    grid-area: message;
    border-left: 6px solid #fdcb6e;
    background: #f9eecc;
}

.js-step-note-error {
    grid-area: message;
    border-left: 6px solid #ff4d4d;
    background: #ffb8b8;
}

.js-spinner {
    left: 50%;
    top: 50%;
    height:60px;
    display: none;
    width:60px;
    margin:20px auto 20px;
    -webkit-animation: rotation .6s infinite linear;
    -moz-animation: rotation .6s infinite linear;
    -o-animation: rotation .6s infinite linear;
    animation: rotation .6s infinite linear;
    border-left:6px solid rgba(0,174,239,.15);
    border-right:6px solid rgba(0,174,239,.15);
    border-bottom:6px solid rgba(0,174,239,.15);
    border-top:6px solid rgba(0,174,239,.8);
    border-radius:100%;
}

@-webkit-keyframes rotation {
    from {-webkit-transform: rotate(0deg);}
    to {-webkit-transform: rotate(359deg);}
}
@-moz-keyframes rotation {
    from {-moz-transform: rotate(0deg);}
    to {-moz-transform: rotate(359deg);}
}
@-o-keyframes rotation {
    from {-o-transform: rotate(0deg);}
    to {-o-transform: rotate(359deg);}
}
@keyframes rotation {
    from {transform: rotate(0deg);}
    to {transform: rotate(359deg);}
}