.login-modal {
    display: none; 
    position: fixed; 
    z-index: 20; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.7); 
    padding-top: 60px;
  }
  
  .login-pole{
    margin-top: 7.5px;
    padding: 5px 10px;
  }

  .login-modal-content {
    margin-left: 5vw;
    margin-right: 5vw;
    margin-bottom: 24px;
    padding: 24px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.4);
    background-color: white;
  }
  .login-modal-content button{
    margin-bottom: 4px ;
    margin-left: 5px;
    padding: 3px 10px;
  }
  .loginCont div{
    padding: 5px;
  }
  
  .animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
  }
  
  @-webkit-keyframes animatezoom {
    from {-webkit-transform: scale(0)}
    to {-webkit-transform: scale(1)}
  }
  
  @keyframes animatezoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
  }