@media (min-width:320px) and (max-width:740px){
    *{
        margin: 0px;
        padding: 0px;
        box-sizing: border-box;
    }

    body{
        width: 100vw;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        /* background-color: #46377c; */
        background-image: url(../img/fundo.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        overflow: hidden;
    }

    .conther{
        width: 70%;
        height: auto;
        min-height: 200px;
        /* border: 2px solid red; */
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
    }
    .logo{
        width: 100%;
        height: 300px;
        background-image: url(../iconn/logo.png);
        background-size: 80%;
        background-position: center;
        background-repeat: no-repeat;
    }


    .loading{
        width: 40px;
        height: 40px;
        /* background-color: aqua; */
        animation: girando 3s infinite linear;
        background-image: url(../iconn/loading.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }


    @keyframes girando {
        to{
            transform: rotate(0deg);
        }
        from{
            transform: rotate(360deg);
        }
    }


    .container {
      width: 80%;
      max-width: 500px;
      background-color: #231c3d;
      /* border-radius: 10px; */
      overflow: hidden;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    }

    .barra {
      height: 30px;
      width: 0%;
      background:linear-gradient(to left,#ffffff,rgb(191, 0, 191)) ;
      text-align: center;
      color: transparent;
      line-height: 30px;
      transition: width 0.3s;
}

.div_letras{
    position: relative;
    width: 80%;
    height: auto;
    text-align: center;
    /* border:2px solid #fff; */
    margin-top: 20px;
    font-family: Arial, Helvetica, sans-serif;

    color: #fff;
}

.div_letras > p{
     font-family: Arial, Helvetica, sans-serif;

    color: #fff;
    animation: piscar 0.9s infinite linear alternate-reverse;
}

@keyframes piscar {
    0%{
        color: #ffffff61;
    }
    100%{
        color: #fff;
    }
}
}