﻿.auth-bg-uppergames {
    background: linear-gradient(-45deg, #000000 50%, #504796);
}

.auth-bg-uppergames > .bg-overlay {
    background-image: url("../images/cover-pattern.png");
    background-position: center;
    background-size: cover;
    opacity: 1;
    background-color: transparent;
}

.auth-uppergames-one-bg {
    background-image: url("../images/Authentication/imagem-fundo.jpeg");
    background-position: center;
    background-size: cover;
}

    .auth-uppergames-one-bg .bg-overlay {
        background: -webkit-gradient(linear, left top, right top, from(#504796), to(#FFFFFF));
        background: linear-gradient(to right, #504796, #FFFFFF);
        opacity: 0.9;
    }

.auth-uppergames-one-bg-position {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 380px;
}

@media (max-width: 575.98px) {
    .auth-uppergames-one-bg-position {
        height: 280px;
    }
}


.text-roxo {
    color: #504796;
}

.btn-roxo {
    background-color: #504796;
    color: white;
}

.btn-roxo:hover {
    background-color: #f7b84b;
}

body {
    font-family: 'Montserrat', sans-serif !important;
}

#loadingScreen {
    display: none; /* Escondido por padrão */
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.85); /* Fundo semitransparente */
    z-index: 9999; /* Certifique-se de que está acima de outros elementos */
    justify-content: center; /* Centralizar horizontalmente */
    align-items: center; /* Centralizar verticalmente */
}

#loadingContent {
    display: flex; /* Usar flexbox para centralização */
    justify-content: center; /* Centralizar horizontalmente */
    align-items: center; /* Centralizar verticalmente */
    height: 100%; /* Garantir que ocupa toda a altura do pai */
    flex-direction: column;
}

#loadingScreen span {
    font-size: 2em;
}