div {
    text-align: center;
}

h5,
h6 {
    margin: 0px;
    font-weight: 500;
    font-size: 20;
    margin-top: 10;
}

#emailUsuario,
#senhaUsuario {
    width: 100%;
    float: left;
    margin-bottom: 5px;
    padding-right: 15px;
}

button {
    margin-bottom: 30px;
    margin-top: 5px;
}

.none {
    display: none !important;
}

input {
    border-radius: 9px !important;
    text-align: center;
}

input#emailUsuario:read-only {
    background-color: #1d3849;
    color: #fff;
    border-color: #44748c;
}

input#emailUsuario:read-only:focus {
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

.containerLogin {
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */

    vertical-align: middle;
    /* position: absolute; */
    /* left: 50%;
    top: 50%; */
    /* -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); */
    padding: 30px;
    text-decoration: none;
    margin: 0px auto;
    width: 100%;
    height: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.loading-spinner {
    background: #333;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    display: none;
}

.loading-spinner.active {
    display: block;
}

#hourglass {
    /* centraliza no meio da tela */
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -32px 0 0 -32px;
}

.loader {
    border: 16px solid #f3f3f3;
    /* Light grey */
    border-top: 16px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.telaPai {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
}

.imagemPromo {
    flex: 1;
    cursor: pointer;
    position: relative;
}
#imagemPatrocinadaMenor {
    position: absolute;
    width: 85%;
    opacity: 1;
    z-index: 1;
    border: 1px solid white;
}
#imagePatrocinada {
    height: 100%;
    width: 100%;
    filter: saturate(0.1) opacity(0.1);
}
#linkPatrocinado {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.backgroundImg {
    flex: 2;
    max-width: 100vw;
    min-width: 600px;
    background-color: #1c1c1c;
    vertical-align: middle;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}

#content-inputs {
    display: flex;
    flex-direction: column;
}

#versao {
    color: #007bff;
    font-weight: 500;
    position: absolute;
    bottom: 0px;
    right: 5px;
    font-size: 15px;
}

#containerPopupSelecaoSistema {
    backdrop-filter: blur(2px) brightness(0.1);
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    /* background: url("../../images/backgroundV65.jpg");
    background-position: center;
    background-size: cover; */
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

#containerPopupSelecaoSistema > div {
    max-width: 1024px;
}

.selecaoVersao {
    border: 1px solid #5896a1;
    border-radius: 9px;
    display: flex;
    flex-direction: column;
    transition: 0.5s;
    cursor: pointer;
    background: rgb(14, 15, 20);
    background: linear-gradient(137deg, rgba(14, 15, 20, 1) 0%, rgba(15, 36, 49, 0.75) 100%);
}

#versaoOld {
    position: relative;
    transition: 0.5s;
    border-color: red;
}

#versaoV65 {
    position: relative;
    transition: 0.5s;
    border-color: green;
}

.container:has(#versaoOld:hover) #versaoV65 {
    transform: scale(0.95);
    filter: brightness(0.3) blur(1px) saturate(0);
}

.container:has(#versaoV65:hover) #versaoOld {
    transform: scale(0.95);
    filter: brightness(0.3) blur(1px) saturate(0);
}

.selecaoVersao:hover {
    transform: scale(1.08);
}

.selecaoVersao > div > img {
    transition: 0.5s;
}

.selecaoVersao:hover > div > img {
    transform: scale(0.95);
}

.justifyEvenly {
    justify-content: space-evenly;
}

.align {
    align-items: stretch;
}

.maxHeight800 {
    max-height: 620px;
}

.divTitulo {
    border-radius: 7px 7px 0 0;
    background: rgb(82, 141, 149);
    background: radial-gradient(circle, rgba(82, 141, 149, 1) 0%, rgba(106, 176, 191, 1) 100%);
    padding: 8px;
    text-align: center;
}

.divTitulo h1 {
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    font-weight: 800;
}

.divListaInfo {
    flex: 1;
}

.divListaInfo ul {
    list-style: none;
    padding: 0 20px;
}

.divListaInfo ul li p {
    text-align: start;
    color: #fff;
    margin-bottom: 8px;
}

.divBotao {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
    margin-bottom: 24px;
}

.divBotao button {
    background: #5d5ec8;
    text-transform: uppercase;
    font-size: 18px;
    color: #fff;
    border-radius: 20px;
    padding: 2px 24px;
    cursor: pointer;
}

#versaoV65Oculta,
#versaoOldOculta {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    top: 0;
    opacity: 0.5;
    border-radius: 9px;
}

.mostra {
    display: flex;
}

.esconde {
    display: none;
}
