:root {
    --theme-color-main:#4c6ef8;
    --font-color: #444444;
    --font-highlight-color: #3a57e8;

    --btn-bg:var(--theme-color-main);
    --btn-font-color:#f3f3f3;
    --btn-highlight-bg:var(--theme-color-main);
    --btn-highlight-font-color:#ffffff;

}

html,
body {
    height: 100%;
    font-family: "Roboto";
}

.left {
    height: 100%;
    background-image: url(../images/bg_1.png);
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 10% 0px 40%;
}

.left h2 {
    font-size: 36px;
}

.left p {
    font-size: 18px;
}

.right {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20%;
    flex-direction: column;
}

.right .logo {
    width: 200px;
    margin-bottom: 10px;
}

.form {
    width: 100%;
}

.form .form-group label {
    margin-bottom: 4px;
    font-weight: 600;
}

.form input {
    font-size: 14px;
    padding: 8px;
    background-color: #fbfbfb;
}

.form .form-control:focus{
  box-shadow: none;
}

.remember-me {
    cursor: pointer;
    font-size: 16px;
}

.required {
    color: red;
}

.forgot-link {
    text-align: right;
    font-size: 14px;
}

.mb-4 {
    margin-bottom: 4px !important;
}

.mt-4 {
    margin-top: 4px !important;
}

.mb-8 {
    margin-bottom: 8px !important;
}

.mt-8 {
    margin-top: 8px !important;
}

.mb-16 {
    margin-bottom: 16px !important;
}

.mt-16 {
    margin-top: 16px !important;
}

.mb-32 {
    margin-bottom: 32px !important;
}

.mt-32 {
    margin-top: 32px !important;
}

.font-16 {
    font-size: 16px !important;
}

.btn-login {
    width: 100%;
    border-radius: 50px;
}
.btn-general-colored {
    background-color: var(--btn-bg);
    padding: 6px 14px;
    font-size: 16px;
    border: 1px solid #dee2e6;
    color: var(--btn-font-color);
}
.btn-general-colored:hover {background-color: var(--btn-bg); color: var(--btn-highlight-font-color);}

.block-bf-af {
    width: 100%;
}

.block-bf-af:after,
.block-bf-af:before {
    width: 30%;
}

.block-bf-af:after,
.block-bf-af:before {
    position: absolute;
    display: inline-block;
    content: '';
    background-color: rgba(34, 34, 34, .1);
    height: 2px;
    top: calc(50% - 1px);
    width: 35%;
}

.block-bf-af:before {
    left: 0;
}

.block-bf-af:after {
    right: 0;
}

.social-login {
    width: 95%;
    text-align: center;
    border: 1px solid #dee2e6;
    border-radius: 50px;
    padding: 5px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: var(--font-color);
    margin: 0px 0px;
    transition: all 0.3s;
}

.social-login img {
    width: 16px;
    height: 16px;
    margin-top: -2px;
}

.social-login:hover {
    color: var(--font-highlight-color);
    border: 1px solid var(--theme-color-main);
}

.login-action-link {
    text-decoration: none;
    color: var(--font-color);
    transition: all 0.3s;
    font-size: 16px;
}

.login-action-link:hover {
    color: var(--font-highlight-color);
}

.toast-body ul {
    margin: 0px;
    padding: 0px;
}

.toast-body ul li {
    list-style: none;
}

@media (max-width: 991.98px) {
    .left {
        padding: 25px 10% 0px 10%;
    }

    .forgot-link {
        text-align: left;
        margin-top: 10px;
    }
}