body {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.background-img {
    position: absolute;
    top: 0;
    right: -10%;
    width: 700px;
    height: 700px;
    background-image: url('../img/tg-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .background-img {
        width: 500px;
        height: 500px;
        right: -25%;
        top: 10%;
    }
}



.spinner-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

#loadingSpinner.d-none {
    display: none !important;
}

.form-control {
    height: calc(1.75em + .75rem + 2px);
    padding: .5rem .75rem;
}