div {
    text-align: center;

}

h5, h6 {
    margin: 0px;
    font-weight: 400;
}

#usuario, #senhaUsuario {
    width: 100%;
    float: left;
    margin-bottom: 10px;
}

button {
    margin-bottom: 30px;
    margin-top: 20px;
}

input {
    text-align: center;
}

.boxshadow {
    /* 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: 12px;

}


.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;
}

.telaPai {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
}

.backgroundImg {

    flex: 1;
    max-width: 50vw;
    min-width: 350px;
    background-color: #E6E6E6;
    /* width:100%; 
   height:100%;  */
    vertical-align: middle;
    background-size: cover;
    /* background-image: url(../../images/Fundo\ Login.png); */

    background-repeat: no-repeat;
    background-position: right;
    /* position: relative; */
}

.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: 50px;
    text-decoration: none;
    margin: 0px auto;
    width: 100%;
    height: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.imagemPromo {
    flex: 1;
    /* background-color: red; */
    background-image: url('https://medxdata.blob.core.windows.net/eventos/backgroundPromocional.jpg');
    background-position: 100%;
    /* background-position: center;
   background-size: cover;
   background-repeat: no-repeat; */
    background-color: #151515;
    /* background-image: url(../../images/fundoevento.jpg); */
    /* background: linear-gradient(90deg, rgba(45,12,60,1) 0%, rgba(23,8,29,1) 100%); */
    display: flex;
    padding: 30px;
    cursor: pointer;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* .imagem2 {
    margin-top: 10%;
    height: 85%;
    width: 100%;
    background-image: url('https://medxdata.blob.core.windows.net/eventos/imagemPromocional.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 8px;
} */

.backgroundUsuario {

    flex: 1;
    max-width: 50vw;
    min-width: 350px;
    background-color: #E6E6E6;
    /* width:100%; 
   height:100%;  */
    vertical-align: middle;
    background-size: cover;
    /* background-image: url(../../images/Fundo\ Login.png); */
    background-repeat: no-repeat;
    background-position: right;
    /* position: relative; */
    border-radius: 25px;
    width: 48%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}