*{
    margin: 0;
    padding: 0;
}
body{
    width: 100vw;
    height: 100vh;
}
.flex{
    display: flex;
}
.flex-row{
    display: flex;
    flex-direction: row;
}
.flex-col{
    display: flex;
    flex-direction: column;
}
.inativa{
    display: none;
}
.tam-100{
    width: 100vw;
    height: 100vh;
    flex-direction: row;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    /*padding-top: 30vh;
    padding-left: 30vw;*/
}
.aguarde {
    width: 60%;
    height: 60%;
    margin: 0;
    /*background-color: #3498db;*/
    box-shadow:0.2em 0.5em 1em 0.01em  #000;
    animation: expandirContrair 1.5s infinite;
}
.topo{
    top: 0px;
    height: 70px;
    margin-bottom: 10px;
}
.topo img{
    height: 100%;
}
.topo span{
    font-family: Arial;
    margin-left: 5px; 
    font-size: xx-large;
    font-style: bold;
}
.sucesso, .erro, .topo{
    width: 100%;
    padding-left: 100px;
    padding-right: 100px;
    border-bottom: 1px solid #000;
}
.titulo{
    width: 100%;
    text-align: center;
    font-weight: bolder;
    font-size: x-large;
    
}
.sucesso > div, .erro > div{
    width: 100%;
}
.mensagem{
    position: relative;
    top: 50vh;
    flex-direction: row;
    margin: auto;
    justify-content: center;
    z-index: 10;
}


/* Definindo a animação */
@keyframes expandirContrair {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}