body {
    background-color: #e6e6e6;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

section.container-fluid {
    flex-grow: 1;
}

.cm-topbar {
    background-color: #333333;
    padding: 10px;
    display: flex;
    align-items: center;
}

.cm-top-logo {
    width: auto;
    max-width: 300px;
    max-height: 17px;
}

.card p:last-child {
    margin-bottom: 0;
}

.container-sm {
    max-width: 600px;
    margin: auto;
    padding: 0 20px;
}

.navbar-brand img {
    max-width: 100%;
    max-height: 35px;
}

@media (max-width: 768px) {
    .navbar-brand img {
        max-height: 28px;
    }
}

.loader-screen {
    position: fixed;
    z-index: 5000;
    background: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #ccc;
    border-top-color: #333;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}