body {
    background-color: #121212;
    height: 100% !important;
    background-image: linear-gradient(45deg, #ffff 0%,
            #f9f9f9 50%,
            #f5f5fb 100%);
}

html {
    height: 100%;
}

label {
    color: black !important;
    text-transform: none !important;
}

h1 {
    color: black !important;
    font-weight: bold;
}

main {
    padding-left: 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-control {
    border-radius: 6px;
}

login-divider {
    display: block;
    padding: 64px;
}

login-divider line {
    color: black !important;
    display: flex;
    justify-content: center;
}

login-divider a {
    color: black !important;
    border-right: 2px solid #7b7e81;
    padding: 0px 12px;
    text-decoration: none;
}

login-divider a:last-of-type {
    border-right: none;
}

login-front {
    max-width: 1120px;
    min-height: 590px;
    width: 100%;
    border-radius: 5px;
    background-color: white;
    display: grid;
    grid-template-columns: 1fr 30rem;
    z-index: 100;
    margin: 0 auto;
}

login-image {
    background: #000d40 url('../img/bg.jpg') no-repeat center;
    background-size: auto;
    background-size: cover;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    position: relative;
}

login-image credit {
    padding: 40px;
    position: absolute;
    bottom: 0px;
    color: black;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    opacity: .9;
}

login-image credit a:hover {
    text-decoration: underline !important;
}

login-content {
    display: block;
    min-width: 340px;
    max-height: 600px;
    padding: 40px;
}

login-content img {
    left: 50%;
    position: relative;
    transform: translateX(-50%);
}

@media only screen and (max-width: 768px) {
    login-image {
        display: none;
    }

    login-front {
        grid-template-columns: auto;
    }

    main {
        padding: 20px;
    }
}

label {
    font-size: 14px !important;
    line-height: 24px;
    padding: 0px !important;
    color: #7b7e81 !important;
}

input {
    height: calc(3rem + 2px);
    line-height: 1.25;
    padding: .75rem .75rem;
}

input[type="checkbox"] {
    height: auto !important;
}

input:autofill,
input:autofill:hover,
input:autofill:active,
input:autofill:focus {
    background: white !important;
}

html {
    height: 100%;
}

.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--color);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--color);
}

input:checked+.slider:before {
    -webkit-transform: translateX(19px);
    -ms-transform: translateX(19px);
    transform: translateX(19px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

input {
    outline: none !important;
    box-shadow: none !important;
}

.btn-info {
    border: 2px solid #0dcaf0 !important;
    background-color: transparent;
    color: #0dcaf0;
    border-radius: 50px !important;
    font-size: 15px !important;
    padding: 6px 18px 6px 18px;
}

.btn-info:hover,
.btn-info:active,
.btn-info:focus {
    color: white !important;
    background-color: #0dcaf0 !important;
    border-color: #0dcaf0 !important;
}

.btn-primary {
    border: 2px solid #1e1e1e !important;
    background-color: transparent;
    color: #1e1e1e;
    border-radius: 50px !important;
    font-size: 15px !important;
    padding: 6px 18px 6px 18px;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    color: white !important;
    background-color: #1e1e1e !important;
    border-color: #1e1e1e !important;
}

.callout {
    padding: 1.25rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    background-color: #f8f9fa;
    border-left: 0.25rem solid #dee2e6;
    font-size: .9rem;
    border-radius: 5px;
}

.callout-success {
    background-color: #d3f8d6;
    border-color: #28a745;
}

.callout-info {
    background-color: #edfbfe;
    border-color: #7ce2f6;
}

.callout-warning {
    background-color: #fffbec;
    border-color: #ffde78;
}

.callout-danger {
    background-color: #fdf0f1;
    border-color: #eb7b86;
}

::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(155, 155, 155, 0.5);
    border-radius: 20px;
    border: transparent;
}