﻿.login_inner {  
  -webkit-box-pack: end;
  -ms-flex-pack: end;
   justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
   flex-direction: column;
}
.login_inner__avatar {
    display: block;
    position: relative;
    background: url("Imagens/logo2.png") no-repeat center;
    background-color: #003333;
    background-size: 100px;
    border: 3px solid #EDF2F4;
    top: 50%;
    width: 10em;
    height: 10em;
    margin: -75px 0 0 -75px;
    -webkit-transform: translateY(-90px);
    transform: translateY(-90px);
    border-radius: 100%;
}





.pulse {
    display: flex;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #cca92c;
    box-shadow: 0 0 0 rgba(82, 143, 206, 0.4);
    animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(82, 143, 206, 0.4);
    }
    70% {
        -webkit-box-shadow: 0 0 0 30px rgba(82, 143, 206, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 30px rgba(82, 143, 206, 0);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(82, 143, 206, 0.4);
        box-shadow: 0 0 0 0 rgba(82, 143, 206, 0.4);
        transform: scale(1);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(82, 143, 206, 0);
        box-shadow: 0 0 0 150px rgba(82, 143, 206, 0);
        transform: scale(1.2);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(82, 143, 206, 0);
        box-shadow: 0 0 0 0 rgba(82, 143, 206, 0);
        transform: scale(1);
    } 
}

