#toastContainer {
    z-index: 99999;
}

.login-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
    background: linear-gradient(to bottom, #004274 0%, #377eb5 35%, #7ea4d6 55%, #dadff4 80%, #ffffff 100%)
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.login-header {
    text-align: center;
    margin-bottom: 25px;
}

.login-header h3 {
    margin-bottom: 8px;
    font-weight: 700;
}

.login-header p {
    margin-bottom: 0;
    color: #777;
}

.login-card label {
    font-weight: 500;
    margin-bottom: 6px;
}

.login-card .form-control {
    height: 48px;
    border-radius: 8px;
}

.login-card .btn {
    height: 48px;
    border-radius: 8px;
    font-weight: 600;
}

.auth-tabs {
    display: flex;
    background: #f1f4f8;
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 25px;
}

.auth-tab {
    width: 50%;
    text-align: center;
    padding: 10px 8px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #555;
    transition: all .2s ease;
}

.auth-tab.active {
    background: #004274;
    color: #fff;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.cursor-pointer {
    cursor: pointer;
}

.content p,
.card-body p,
.note-editable p {
    color: #000;
    font-weight: normal;
}

.placeholder-glow .placeholder {
    animation: placeholder-glow 2s ease-in-out infinite;
}

.placeholder {
    display: inline-block;
    min-height: 1em;
    vertical-align: middle;
    cursor: wait;
    background-color: currentcolor;
    color: #5E5E5E !important;
    opacity: .5;
}

@keyframes placeholder-glow {
    50% {
        opacity: .2;
    }
}

.container a {
    color: #004274;
}

.bd-placeholder-img rect {
    fill: #101010;
    width: 100%;
    height: 100%;
}

.card-title .placeholder {
    height: 1.7rem;
    color: #202020 !important;
}

li.section {
    border-left: 1px dotted #202020;
    border-bottom: 1px dotted #202020;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

select option:disabled {
    color: #ff5d5d;
    font-style: italic;
}