
  .wrap.wrap-login {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .button.wrap-login {
    min-width: 150px;
    height: 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    /* letter-spacing: 0.5px; */
    color: #ffffff;
    background: #60BF45;
    background: linear-gradient(90deg, rgb(96, 191, 69) 0%, rgb(96, 191, 69) 100%);
    border: none;
    border-radius: 1000px;
    box-shadow: 5px 5px 15px rgb(255, 255, 255);
    transition: all 0.3s ease-in-out 0s;
    cursor: pointer;
    outline: none;
    position: relative;
    padding: 10px;
    margin: auto;
    }
  
  button.wrap-login::before {
    content: '';
    border-radius: 1000px;
    min-width: calc(150px + 10px);
    min-height: calc(10px + 20px);
    border: 2px solid #ffffff;
    box-shadow: 0 0 50px rgb(96, 191, 69);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s ease-in-out 0s;

  }
  
  .button.wrap-login:hover, .button.wrap-login:focus {
    color: #000000;
    transform: translateY(-6px);

  }
  
  button.wrap-login:hover::before, button.wrap-login:focus::before {
    opacity: 1;
  }
  
  button.wrap-login::after {
    content: '';
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 3px solid #ffffff;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 1s infinite;
  }
  
  button.wrap-login:hover::after, button.wrap-login:focus::after {
    animation: none;
    display: none;
  }
  
  @keyframes ring {
    0% {
      width: 10px;
      height: 10px;
      opacity: 1;
    }
    100% {
      width: 70px;
      height: 70px;
      opacity: 0;
    }
  }

  @media screen and (max-width : 320px) { 
    .wrap.wrap-login {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .button.wrap-login {
      min-width: 100px;
      height: 15px;
      font-family: 'Nunito', sans-serif;
      font-size: 10px;
      background: #60BF45;
      box-shadow: 5px 5px 45px rgb(255, 255, 255);
      cursor: pointer;
      outline: none;
      position: relative;
      padding: 10px;
      margin: auto;
      }
    
    button.wrap-login::before {
      content: '';
      border-radius: 100px;
      min-width: calc(152px + 15px);
      min-height: calc(15px + 20px);
      border: 2px solid #ffffff;
      box-shadow: 0 0 50px rgb(96, 191, 69);
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      opacity: 0;
      transition: all .3s ease-in-out 0s;
  
    }
    
    .button.wrap-login:hover, .button.wrap-login:focus {
      color: #000000;
      transform: translateY(-6px);
  
    }
    
    button.wrap-login:hover::before, button.wrap-login:focus::before {
      opacity: 1;
    }
    
    button.wrap-login::after {
      content: '';
      width: 30px;
      height: 30px;
      border-radius: 100%;
      border: 3px solid #ffffff;
      position: absolute;
      z-index: -1;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: ring 1s infinite;
    }
    
    button.wrap-login:hover::after, button.wrap-login:focus::after {
      animation: none;
      display: none;
    }
    
    @keyframes ring {
      0% {
        width: 10px;
        height: 10px;
        opacity: 1;
      }
      100% {
        width: 70px;
        height: 70px;
        opacity: 0;
      }
    }
  }

  @media screen and (max-width : 320px){
    .panel-heading .login .login{
        width: 160px;
    }
}
  