.loading-container, #content-uvita {
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 85vh;
    width: 100%;
  }

  .uvita-info {
    display: flex;
    font-weight: bold;
    color: azure;
    font-size: 28px;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    text-align: center;
    width: 100%;
}

  .spinner {
      width: 50px;
      height: 50px;
      border: 5px solid rgba(255, 255, 255, 0.3);
      border-top: 5px solid white;
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin: 0 auto 10px;
  }

  #nxtx-frame {
    position: fixed; /* Tetap di layar */
    top: 0;
    left: 0;
    width: 100vw; /* Lebar penuh */
    height: 100vh; /* Tinggi penuh */
    border: none; /* Hilangkan border */
  }

  @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
  }

  .uvita-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.uvita-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50vw;
    max-width: 500px;
    height: auto;
    max-height: 80vh;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transform: translate(-50%, -50%);
    padding: 20px;
    overflow-y: auto;
}

.uvita-close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    color: black;
    cursor: pointer;
    z-index: 10001;
}

.uvita-form {
    width: 80%;
    margin: 0 auto;
    display: block;
}

.login-box {
    max-width: 400px;
    width: 90%;
    margin: 80px auto;
    padding: 20px;
    border: 3px solid var(--blue);
    height: auto;
    border-bottom-left-radius: 200px;
    border-bottom-right-radius: 200px;
    /* background: rgba(10, 11, 24, 0.6); */
    background: #003158;
    box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
}

@media (max-width: 768px) {
    .uvita-modal-content {
        width: 90vw;
        max-width: 95%;
        height: auto;
        max-height: 90vh;
    }
}

