.loading_screen {
    width: 100%;
      height: 100%;
      position: fixed;
      display: flex;
      align-items: center;
      justify-content: center;
  
  }




  #login {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    border: none;
    background-color: #38d39f;
    color: white;
    border-radius: 20px;
    font-weight: bold;
    width: 100%;
    position: relative;
}

#login span {
    flex-grow: 1;
    text-align: center;
}


.progress-container99 {
    display: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    border-top: 3px solid #38d39f;
    animation: spin 1s linear infinite;
}



@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}