html {
    font-size: 13px;
}

body {
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    font-size: 13px;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

h2 {
    margin-bottom: 0.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: #212529;
    font-size: 1.625rem;
}

.form-login__help-link {
    text-align: justify;
    color: #778ca2;
}

.form-group label {
    color: #212529;
    font-family: Rubik, sans-serif;
    font-size: 13px;
}

.form-control {
    font-weight: 500;
    padding: 12px 15px;
    color: #212529;
    font-family: "Rubik", sans-serif;
    height: auto;
    font-size: 13px;
    display: block;
    width: 100%;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #e8ecef;
    border-radius: 4px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.select2-selection__rendered {
    line-height: inherit !important;
    padding: 9px 15px !important;
    font-weight: 500 !important;
    color: #212529 !important;
}

.select2-selection--single {
    height: 39px !important;
    border-color: #e8ecef !important;
}

.select2-selection__arrow {
    height: 37px !important;
}

.select2-selection__placeholder {
    color: #6c757d !important;
}

.select2-dropdown {
    border-color: #e8ecef !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.select2-search__field {
    border-color: #e8ecef !important;
    background-color: #e8ecef;
    color: black;
    padding: 5px 10px;
}

.select2-results__option {
    padding: 12px;
}

.dropdown-item {
    background: #fff;
    padding: 11px 20px;
    overflow: hidden;
}

.dropdown-menu {
    padding: 0;
}

.dropdown-item.active {
    color: #fff;
    text-decoration: none;
    background-color: #104ffe;
}

.text-primary {
    color: #104ffe;
}

.btn-primary, .btn-secondary {
    color: #fff;
    border-radius: 4px;
    padding: 12px 10px;
    font-size: 15px;
    line-height: 1.1;
    font-weight: 500;
}

.btn-primary {
    background-color: #104ffe;
    border-color: #104ffe;
}

.btn-secondary {
    background-color: #15db95;
    border-color: #15db95;
}

.btn-secondary:hover {
    background-color: #07b87d;
    border-color: #07b87d;
}

.anonymous__outer {
    overflow: hidden;
}

.anonymous__left-aside {
    z-index: 3;
    position: relative;
    float: left;
    width: 50%;
    min-height: 100vh;
    background: #fff;
}

.anonymous__right-aside {
    float: left;
    width: 50%;
    min-height: 100vh;
}

.anonymous__flags-container {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    font-size: 18px;
}

.globe-icon-container {
    padding: 20px;
    display: inline-block;
}

.globe-icon-container svg {
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
}

.form-login {
    margin: 30px 0;
}

.form-control:focus, .select--disabled:focus, .select:focus {
    border-color: rgba(16, 79, 254, .75) !important;
    box-shadow: 0 0 0 0.2rem rgba(16, 79, 254, .25);
    color: #212529;
}

.select2-container--bootstrap.select2-container--focus .select2-selection, .select2-container--bootstrap.select2-container--open .select2-selection {
    border-color: rgba(16, 79, 254, .75) !important;
    box-shadow: 0 0 0 0.2rem rgba(16, 79, 254, .25);
    color: #212529;
}

.form-login__outer {
    max-width: 360px;
    margin: 70px auto;
}

.form-login__logo {
    margin-bottom: 20px;
}

.custom-control .form-group label {
    font-size: 12px;
}


.app-security {
    display: block;
    overflow: inherit;
    background: #fff;
    background: url('../images/loginbg.jpg') right;
    background-size: cover;
    position: relative;
}

.app-security:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: -webkit-radial-gradient(left top, circle farthest-corner, #0cb4ce 9%, #006cff 48%, #6442ff 91%);
    opacity: 0.92;
}


@media screen and (max-width: 750px) {
    .anonymous__right-aside {
        display: none;
    }

    .anonymous__left-aside {
        width: 100%;
        padding: 0 20px;
    }

    .form-login__outer {
        margin: 50px auto;
    }
}

.alerts {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    color: #fff;
}

.alerts--right {
    left: auto;
    right: 15px;
}

.alerts .alert {
    margin: 10px;
    width: 400px;
    max-width: 100vw;
    font-size: 14px;
    padding: 0;
    background-color: white;
    box-sizing: border-box;
    box-shadow: rgba(9, 30, 66, 0.31) 0 0 1px, rgba(9, 30, 66, 0.25) 0 20px 32px -8px;
    color: #42526e;
    z-index: 600;
    border-radius: 3px;
    transition: background-color 200ms;
    border: 1px solid #f3f3f3;
}

.alerts .alert--stacked {
    display: none;
}

.alerts .alert__message b {
    word-break: break-word;
}

.alerts .alert__inner {
    padding: 15px;
    word-break: break-word;
}

.alerts .alert__progress {
    height: 2px;
    background-color: #104ffe;
}

.alerts .alert__header {
    font-size: 16px;
    margin-bottom: 10px;
}

.alerts .alert__icon {
    margin-right: 5px;
}

.alerts .alert--success .alert__icon {
    color: #39a076;
}

.alerts .alert--danger .alert__icon {
    color: #f44336;
}

.alerts .alert--warning .alert__icon {
    color: #e08705;
}

.alerts .alert--info .alert__icon {
    color: #104ffe;
}

.alerts .alert .close {
    margin: 5px 10px;
    font-size: 16px;
}

.stacked-alerts {
    max-width: 100vw;
    width: 400px;
    height: 10px;
    background-color: white;
    box-shadow: rgba(9, 30, 66, 0.31) 0 0 1px, rgba(9, 30, 66, 0.25) 0 20px 32px -8px;
    margin: 20px 10px -12px 10px;
    border-radius: 3px;
}

@media only screen and (max-width: 768px) {
    .alerts {
        bottom: 0;
        left: 0;
    }

    .alerts .alert {
        margin: 0 0 10px;
    }

    .stacked-alerts {
        margin: 10px 0px -3px 0px;
    }
}

.alert-danger {
    color: #f44336;
    border-color: #f44336;
    background-color: rgba(244, 67, 54, 0.05) !important;
}

.alert-success {
    color: #39a076 !important;
    border-color: #39a076;
    background-color: rgba(57, 160, 118, 0.05) !important;
}

.alert-warning {
    color: #e08705 !important;
    border: 1px solid #e08705;
    background-color: rgba(224, 135, 5, 0.05) !important;
}

.alert-warning--big {
    display: block;
    padding: 12px 0;
    font-size: 13px;
}

.alert-info {
    color: #17a2b8 !important;
    border-color: #17a2b8;
    background-color: rgba(23, 162, 184, 0.05) !important;
}

.help-block {
    color: #E91E63;
    margin-top: 5px;
    display: block;
}
