.login-page {
    position: relative;
}
.toast:not(.showing):not(.show) {
    display: none;
}
.toast{
    position: fixed;
    z-index: 9999;
    top: 10px;
    right: 10px;
    border-radius: 6px;
    background: #fff;
    padding: 20px 25px 20px 25px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-left: 8px solid #46AFDC;
    overflow: hidden;
    /* transform: translateX(calc(100% + 30px)); */
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.25, 1.35);
  }
  .toast.show{
    transform: translateX(0);
  }
  .toast.show
  .toast-content{
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .toast-content {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .toast-check{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 66px;
    background-color: #46AFDC;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
  }
  .message{
    display: flex;
    flex-direction: column;
    margin: 0 20px;
  }
  .message-text{
    font-size: 24px;
    font-weight: 600;
  }
  .text-1{
    font-size: 30px;
    font-weight: 600;
    color: #333;
  }
  .text-2{
    color: #666;
    font-weight: 400;
    font-size: 18px;
  }
  .toast-close{
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 5px;
    cursor: pointer;
    opacity: 0.7;
  }
  .toast-close:hover{
    opacity: 1;
  }
  .toast .progress{
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: #ddd;
  }
  .toast .progress::before{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #46AFDC;
  }
  .toast .progress.show::before{
    animation: progress 5s linear forwards;
  }
  @keyframes progress {
    100%{
      right: 100%;
    }
  }
  .toast-btn{
    padding: 10px 40px;
    font-size: 20px;
    outline: none;
    border: none;
    background-color: #46AFDC;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
  }
  .toast-btn:hover{
    background-color: #46AFDC;
  }
