/* CSS used here will be applied after bootstrap.css */
body {
    margin: 0;
    padding: 0;
    font-family: 'SanFranciscoDisplay-Regular' !important;
}

.loginbg{
    background: url('../images/loginbg.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; height: 100vh;
}

.loginbg .container , .loginbg .container .row{
    height: 100vh;
}


/*fonts*/
@font-face {
    font-family: 'SanFranciscoDisplay-Semibold';
    src: url('../fonts/SanFranciscoDisplay-Semibold.woff2') format('woff2'), url('../fonts/SanFranciscoDisplay-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'SanFranciscoDisplay-Thin';
    src: url('../fonts/SanFranciscoDisplay-Thin.woff2') format('woff2'), url('../fonts/SanFranciscoDisplay-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'SanFranciscoDisplay-Medium';
    src: url('../fonts/SanFranciscoDisplay-Medium.woff2') format('woff2'), url('../fonts/SanFranciscoDisplay-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'SanFranciscoDisplay-Black';
    src: url('../fonts/SanFranciscoDisplay-Black.woff2') format('woff2'), url('../fonts/SanFranciscoDisplay-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'SanFranciscoDisplay-Bold';
    src: url('../fonts/SanFranciscoDisplay-Bold.woff2') format('woff2'), url('../fonts/SanFranciscoDisplay-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'SanFranciscoDisplay-Heavy';
    src: url('../fonts/SanFranciscoDisplay-Heavy.woff2') format('woff2'), url('../fonts/SanFranciscoDisplay-Heavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'SanFranciscoDisplay-Regular';
    src: url('../fonts/SanFranciscoDisplay-Regular.woff2') format('woff2'), url('../fonts/SanFranciscoDisplay-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'SanFranciscoDisplay-Light';
    src: url('../fonts/SanFranciscoDisplay-Light.woff2') format('woff2'), url('../fonts/SanFranciscoDisplay-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}
/*fonts*/

.loginform{
    float:left; width: 100%; margin-top: 100px;
}
.loginform form {
    background: #fff;
    border-radius: 5px;
    padding: 50px;
}

.loginform form label {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: #444444;
}

.form-control {

    color: #444444;

    border: 1px solid #bababa;
    border-radius: 5px;

    height: 44px;
}

.loginform form label.form-check-label {
    color: #7a7a7a;
    font-size: 15px;
}

.loginlogo {
    float: none;
    width: 100%;
    text-align: center;
    display: inline-block;
    margin-bottom: 45px;
}

.loginlogo img { width: 235px; filter: brightness(0) invert(1);}

.loginform form .btn.btn-primary {
    margin: 30px 0 0 0;
    width: 120px;
    height: 44px;
    font-size: 17px;
    border-bottom: 2px solid #076eb0 !important;
    background: #098de1;
    border-color: #098de1;
}

.loginform form .btn.btn-primary:hover { background: transparent; color: #098de1; border-bottom: 2px solid #098de1 !important;}

.loginform form a {
    /* float: right; */
    margin: 40px 0 0 0;
    color: #29a3b0;
    font-size: 15px;
}
.loginform .form-group input {
    border-color: #bababa;
}

:root {
    /* larger checkbox */
}
:root label.checkbox-bootstrap input[type=checkbox] {
    /* hide original check box */
    opacity: 0;
    position: absolute;
    /* find the nearest span with checkbox-placeholder class and draw custom checkbox */
    /* draw checkmark before the span placeholder when original hidden input is checked */
    /* disabled checkbox style */
    /* disabled and checked checkbox style */
    /* when the checkbox is focused with tab key show dots arround */
}
:root label.checkbox-bootstrap input[type=checkbox] + span.checkbox-placeholder {
    width: 14px;
    height: 14px;
    border: 1px solid;
    border-radius: 3px;
    /*checkbox border color*/
    border-color: #737373;
    display: inline-block;
    cursor: pointer;
    margin: 0 7px 0 -20px;
    vertical-align: middle;
    text-align: center;
}
:root label.checkbox-bootstrap input[type=checkbox]:checked + span.checkbox-placeholder {
    background: #fff;
}
:root label.checkbox-bootstrap input[type=checkbox]:checked + span.checkbox-placeholder:before {
    display: inline-block;
    position: relative;
    vertical-align: text-top;
    width: 5px;
    height: 9px;
    /*checkmark arrow color*/
    border: solid white;
    border-width: 0 2px 2px 0;
    /*can be done with post css autoprefixer*/
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
}
:root label.checkbox-bootstrap input[type=checkbox]:disabled + span.checkbox-placeholder {
    background: #ececec;
    border-color: #c3c2c2;
}
:root label.checkbox-bootstrap input[type=checkbox]:checked:disabled + span.checkbox-placeholder {
    background: #d6d6d6;
    border-color: #bdbdbd;
}
:root label.checkbox-bootstrap input[type=checkbox]:focus:not(:hover) + span.checkbox-placeholder {
    outline: 1px dotted black;
}
:root label.checkbox-bootstrap.checkbox-lg input[type=checkbox] + span.checkbox-placeholder {
    width: 24px;
    height: 24px;
    border: 1px solid;
    border-radius: 5px;
    /*checkbox border color*/
    border-color: #bababa;
}
:root label.checkbox-bootstrap.checkbox-lg input[type="checkbox"]:checked + span.checkbox-placeholder::before {
    width: 8px;
    height: 14px;
    border: solid #098de1;
    border-width: 0 3px 3px 0;
}
label.checkbox-inline.checkbox-bootstrap.checkbox-lg {
    color: #7a7a7a;
    font-size: 15px;
    margin: 0px 0 0 0;
}
.form-group input::-webkit-input-placeholder {
    color: #bbbbbb;
    font-weight: normal;
    font-family: 'SanFranciscoDisplay-Regular';
}
.form-group input:-moz-placeholder {
    color: #bbbbbb;
    font-weight: normal;
    font-family: 'SanFranciscoDisplay-Regular';
}
.form-group input:-ms-input-placeholder {
    color: #bbbbbb;
    font-weight: normal;
    font-family: 'SanFranciscoDisplay-Regular';
}
.form-group input::placeholder {
    color: #bbbbbb;
    font-family: 'SanFranciscoDisplay-Regular';
}
.form-group input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #bbbbbb;
    font-family: 'SanFranciscoDisplay-Regular';
}

.form-group input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #bbbbbb;
    font-family: 'SanFranciscoDisplay-Regular';
}
input:focus::-webkit-input-placeholder {
    color:transparent;
    font-family: 'SanFranciscoDisplay-Regular';
}
input:focus:-moz-placeholder {
    color:transparent;
    font-family: 'SanFranciscoDisplay-Regular';
}
/* FF 4-18 */
input:focus::-moz-placeholder {
    color:transparent;
    font-family: 'SanFranciscoDisplay-Regular';
}
/* FF 19+ */
input:focus:-ms-input-placeholder {
    color:transparent;
    font-family: 'SanFranciscoDisplay-Regular';
}
/* IE 10+ */
#app {
    margin-top: 0px !important;
}
/* validatation message color css start */
.help.is-danger {
    color: #c9202b;
    font-size: 14px;
    text-transform : capitalize;
}
/* validatation message color css end */

.has-text-danger {
    color: red;
}

@media screen and (max-width: 667px) {
    .loginform form {
        background: #fff;
        border-radius: 5px;
        padding: 40px;
    }
    .loginform form a {

        font-size: 14px;
    }


    .loginlogo img {

        width: 180px;
        filter: brightness(0) invert(1);

    }
    .loginform {
        float: left;
        width: 100%;
        margin-top: 50px;
    }

}

@media screen and (max-width: 320px) {
    .loginform form a {
        float: right;
        margin: 45px 0 0 0;
        color: #29a3b0;
        font-size: 13px;
    }
    .loginform form {
        background: #fff;
        border-radius: 5px;
        padding: 40px 25px;
    }
    .loginform {
        float: left;
        width: 100%;
        margin-top: 30px;
    }
    .loginlogo {
        float: none;
        width: 100%;
        text-align: center;
        display: inline-block;
        margin-bottom: 25px;
    }
}
