body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #e1f0ff 0%, #cce7ff 25%, #f0f8ff 50%, #e6f3ff 75%, #d9edff 100%);
    background-size: 400% 400%;
    background-attachment: fixed;
    animation: gradientMove 8s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
  }
  
  .loading-container {
    text-align: center;
    position: relative;
  }
  
  .loading-ring {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .loading-ring::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #e0e0e0;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  .loading-logo {
    width: 60px; /* Adjust size as needed */
    height: 60px;
    position: relative;
    z-index: 1;
  }
  
  /* Spin Animation */
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Gradient Movement Animation */
  @keyframes gradientMove {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  