/* Root
================================================== */
:root {
    --color-primary: #3094da;
    --color-border: #e5e5e5;
    --color-headers: #3b3b3b;
    --color-primary-hover: #0669af;
}
html, body {
    height: 100%;
    font-family: 'Poppins', sans-serif;
}
body {
    color:#9a9cab;
    font-size: 16px
}
a, a:hover {text-decoration:none}
a:hover {color: inherit}
a:focus, button:focus {outline: none}
img {display:block;max-width: 100%;height: auto}
input {
    filter: none;
}
img {max-width: 100%;height: auto}
b, strong {
    font-weight: normal;
}
.alert {
    font-size: 13px;
    line-height: 15px;
    text-align: center;
    padding: 12px;
}
#loginBg {
    background: url("../cms/login.jpg") no-repeat center left;
    background-size: cover;
}
#app {
    background: #fff
}
#app form {
    width: 520px
}
#app form label {
    color: #000;
}
.form-group {
    margin-bottom: 15px;
}
.form-control:focus {
    box-shadow: 0 0 0 0 rgba(0,123,255,.25);
}
.btn {
    padding: 11px 30px;
    border-radius: 4px;
    border: 0;
    background: #3094da;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.1px;
}
.btn:hover {
    background: #0669af;
    color: white;
}
.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0 rgba(0,123,255,.25);
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-top: 0px;
    gap: 16px;
    font-size: 22px;
    color: var(--color-headers);
    text-transform: uppercase;
    font-weight: bold;
}
.section-heading .section-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--color-primary);
    display: inline-block;
}
.section-heading .section-line {
    border: 1px solid var(--color-border);
    border-width: 1px 0;
    -webkit-box-flex: 1;
    flex-grow: 1;
    height: 4px;
}

@media (max-width: 575.98px) {
    #app {
        padding: 20px;
    }
    #app img {
        width: 80px;
    }
    #loginBg {
        background: none;
    }
}