body {
    background-color: #375980;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
.under-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
}
.under-logo {
    width: 100%;
    background: #1e3c5d;
    display: flex; 
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.under-logo img {
    width: 70%
}
.under-y {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.under-loading {
    display: flex; 
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.under-text {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 30px
}
.under-text span {
    font-weight: 400;
    font-size: 30px;
    color: #ffffff;
}
@media (max-width: 1366px) {
    .under-y {
        padding: 0 35px 0 35px;
    }
    .under-text {
        align-items: flex-start;
    }
}
@media (max-width: 992px) {
    .under-grid {
        grid-template-columns: 1fr;
    }
    .under-logo .logo {
        width: 80%;
    }
    .under-y {
        padding: 0 35px 0 35px;
    }
    .under-text {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        padding-top: 40px
    }
}
@media (max-width: 569px) {
    .under-logo .logo {
        width: 80%
    }
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
  }
  @keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  @keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
  }
  