body {
    background: #F8FAFC;
    height: 100vh;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #1E293B;
}

.text-secondary {
    color: #64748B;
}

.side-logo {
    background: #1E3A8A;
    padding-top: 200px;
    height: 100vh;
}

.side-login {
    padding: 200px 100px 10px 100px;
}

.side-login h1 {
    margin-bottom: 10px;
    font-size: 26px;
    font-weight: 600;
}

.card {
    border-radius: 8px;
    box-shadow: 0 6px 10px -4px rgba(0, 0, 0, .15);
    background-color: #fff;
    color: #252422;
    margin-bottom: 20px;
    position: relative;
    border: 0 none;
    padding: 30px 20px;
    margin-top: 40px;
}

.form-control {
    background-color: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    color: #1E293B;
    line-height: normal;
    font-size: 14px;
    transition: color .3s ease-in-out, border-color .3s ease-in-out, background-color .3s ease-in-out;
    box-shadow: none;
    padding: 10px 14px;
    height: 48px;
}

.input-group-text {
    background-color: white;
    border-radius: 6px 0px 0px 6px;
}

label {
    color: #64748B;
}

.btn-round {
    border-width: 1px;
    border-radius: 30px !important;
    padding-right: 23px !important;
    padding-left: 23px !important;
}

.btn-primary {
    background-color: #032b81;
    color: #fff;
}

.btn {
    border-width: 2px !important;
    font-weight: 600;
    font-size: .8571em !important;
    line-height: 1.35em !important;
    text-transform: uppercase;
    border: none;
    margin: 30px 1px 20px 1px;
    border-radius: 10px;
    padding: 15px 22px;
    cursor: pointer;
    color: #fff;
    transition: all .15s linear;
}

.logo {
    max-height: 50vh;

}

.load {
    background: rgba(0, 0, 0, 0.9);
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    padding-top: 60px;
}

.loader {
    width: 7em;
    height: 7em;
    font-size: 20px;
    box-sizing: border-box;
    border-top: 0.3em solid #51cbce;
    border-radius: 50%;
    position: relative;
    animation: rotating 1s ease-in-out infinite;
    --direction: 1;
    margin: 30px auto;
}

.loader::before,
.loader::after {
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    box-sizing: border-box;
    top: -0.2em;
}

.loader::before {
    border-top: 0.3em solid dodgerblue;
    transform: rotate(120deg);
}

.loader::after {
    border-top: 0.3em solid gold;
    transform: rotate(240deg);
}

.loader span {
    position: absolute;
    color: rgba(0, 0, 0, 0.6);
    width: inherit;
    height: inherit;
    text-align: center;
    line-height: 7em;
    font-family: sans-serif;
    animation: rotating 1s linear infinite;
    --direction: -1;
}

@keyframes rotating {
    50% {
        transform: rotate(calc(180deg * var(--direction)));
    }

    100% {
        transform: rotate(calc(360deg * var(--direction)));
    }
}