body {
    font-family: "Karla", sans-serif;
    background-color: #fff;
    min-height: 100vh;
}

.bg-load {
    background: #f8f9fa;
    height: 100vh;
    width: 100%;
}

.load {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*change these sizes to fit into your project*/
    width: 100px;
    height: 100px;
}

.load hr {
    border: 0;
    margin: 0;
    width: 40%;
    height: 40%;
    position: absolute;
    border-radius: 50%;
    animation: spin 2s ease infinite
}

.load :first-child {
    background: #333333;
    animation-delay: -1.5s
}

.load :nth-child(2) {
    background: #0099ff;
    animation-delay: -1s
}

.load :nth-child(3) {
    background: #cce5ff;
    animation-delay: -0.5s
}

.load :last-child {
    background: #99deff;
}

#loading {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0000004d;
    position: absolute;
    z-index: 1;
    width: 100%;
    display: none;
}

@keyframes spin {
    0%,
    100% {
        transform: translate(0)
    }
    25% {
        transform: translate(160%)
    }
    50% {
        transform: translate(160%, 160%)
    }
    75% {
        transform: translate(0, 160%)
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 16px;
        padding-bottom: 16px;
    }
}

.spinner {
    -webkit-animation: rotator 1.4s linear infinite;
    animation: rotator 1.4s linear infinite;
}

@-webkit-keyframes rotator {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
}

@keyframes rotator {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
}

.path {
    stroke-dasharray: 187;
    stroke-dashoffset: 0;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
    animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@-webkit-keyframes colors {
    0% {
        stroke: #4285f4;
    }
    25% {
        stroke: #de3e35;
    }
    50% {
        stroke: #f7c223;
    }
    75% {
        stroke: #1b9a59;
    }
    100% {
        stroke: #4285f4;
    }
}

@keyframes colors {
    0% {
        stroke: #4285f4;
    }
    25% {
        stroke: #de3e35;
    }
    50% {
        stroke: #f7c223;
    }
    75% {
        stroke: #1b9a59;
    }
    100% {
        stroke: #4285f4;
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 187;
    }
    50% {
        stroke-dashoffset: 46.75;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    100% {
        stroke-dashoffset: 187;
        -webkit-transform: rotate(450deg);
        transform: rotate(450deg);
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 187;
    }
    50% {
        stroke-dashoffset: 46.75;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    100% {
        stroke-dashoffset: 187;
        -webkit-transform: rotate(450deg);
        transform: rotate(450deg);
    }
}

.brand-wrapper {
    padding-top: 7px;
    padding-bottom: 8px;
    margin-bottom: 7px;
}

.brand-wrapper .logo {
    height: 25px;
}

.login-wrapper {
    width: 370px;
    max-width: 100%;
    padding: 34px;
    border-radius: 8px;
    border: 0;
    background-color: #fff;
}

.login-wrapper .form-control {
    border: none;
    padding: 16px 18px;
    border-radius: 0;
    min-height: 48px;
    font-size: 14px;
    font-weight: normal;
    background-color: transparent;
}

.login-wrapper .form-control::-webkit-input-placeholder {
    color: #b0adad;
}

.login-wrapper .form-control::-moz-placeholder {
    color: #b0adad;
}

.login-wrapper .form-control:-ms-input-placeholder {
    color: #b0adad;
}

.login-wrapper .form-control::-ms-input-placeholder {
    color: #b0adad;
}

.login-wrapper .form-control::placeholder {
    color: #b0adad;
}

.login-wrapper .input-group {
    margin-bottom: 18px;
    border-radius: 24px;
    border: solid 1px #f5f5f5;
}

.login-wrapper .input-group .input-group-prepend {
    margin-right: 0;
}

.login-wrapper .input-group .input-group-prepend .input-group-text {
    border: 0;
    background-color: transparent;
    padding-left: 27px;
    color: #000;
}

.login-wrapper .input-group .input-group-prepend+.form-control {
    padding-left: 5px;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
}

.login-wrapper .login-btn {
    padding: 13px 20px;
    background-color: #333333;
    border-radius: 24px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 32px;
}

.login-wrapper .login-btn:hover {
    border: 1px solid #333333;
    background-color: #fff;
    color: #333333;
}

.login-wrapper-footer-text {
    font-size: 13px;
    color: #000;
    text-align: center;
    margin-bottom: 32px;
}

.login-wrapper .social-links {
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
}

.login-wrapper .social-links a {
    display: inline-block;
    font-size: 20px;
    color: #000;
}

.login-wrapper .social-links a+a {
    margin-left: 10px;
}

.login-description {
    font-size: 20px;
    color: #000;
    font-weight: normal;
    margin-bottom: 32px;
}

.login-img {
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: left;
    object-position: left;
}

.login-check-box {
    padding-left: 34px;
}

@media (max-width: 767px) {
    .login-check-box {
        margin-bottom: 10px;
    }
}

.login-check-box .custom-control-label::before {
    width: 24px;
    height: 21px;
    border: solid 1px #f5f5f5;
    left: -34px;
    top: 0px;
}

.login-check-box .custom-control-label::after {
    left: -34px;
    width: 24px;
    height: 21px;
    top: 0;
}

.form-options-wrapper {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: normal;
    color: #000;
}

.form-options-wrapper a.forgot-password-link {
    color: #0799f9;
}

.form-options-wrapper a.forgot-password-link:hover {
    text-decoration: none;
}

@media (max-width: 576px) {
    .form-options-wrapper {
        display: block;
    }
}

input:focus {
    box-shadow: none!important;
    border: 1px solid #333333!important;
}


/*# sourceMappingURL=login.css.map */