/* Your dark theme CSS styles go here */
body {
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }

  /* Add the following CSS style for the canvas element */
  #canvas {
    position: absolute;
    top: 0;
    left: 0;
  }

  .dashboard-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .container {
    background-color: rgba(255, 255, 255, 0.6); /* White glass background color */
    padding: 80px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Raised glass effect */
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: brightness(200%) blur(4px); /* Blurry white glass effect */
  }

  .animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(229, 57, 53, 0.3), rgba(76, 175, 80, 0.3), rgba(63, 81, 181, 0.3), rgba(229, 57, 53, 0.3));
    background-size: 400% 400%;
    animation: gradient-animation 8s linear infinite;
    z-index: -1;
    opacity: 0.6; /* Reduced opacity for the RGB effect */
    backdrop-filter: blur(5px); /* Blurry RGB effect */
  }

  @keyframes gradient-animation {
    0%, 100% {
      background-position: 0% 50%;
    }
    25% {
      background-position: 100% 50%;
    }
    50% {
      background-position: 0% 100%;
    }
    75% {
      background-position: 100% 100%;
    }
  }

  h1 {
    margin-bottom: 20px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    text-align: left;
    width: 100%;
  }

  .form-group input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.6); /* Blurry white glass background for input fields */
    backdrop-filter: brightness(190%) blur(1px); /* Blurry white glass effect for input fields */
    border: none;
    border-radius: 4px;
    color: #ffffff;
  }

  .signup-link {
   text-align: center;
   padding: 20px;
   font-size: 16px;
  }

   .signup-link a{
   color: #21d4e0;
   text-decoration: none;
   }
   .signup-link a:hover{
    text-decoration: underline;
  }

  button {
    width: 150px;
    padding: 12px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
    backdrop-filter: brightness(120%) blur(1px); /* Blurry white glass effect for the button */
  }

  button:hover {
    background-color: #0056b3;
  }

  /* Transparent effect */
  .transparent-bg {
    background-color: transparent;
  }

  /* Add CSS for error message display */
  .error-message {
    color: #2600ff;
    font-size: 14px;
    margin-top: 10px;
  }

  /* Media Query for mobile view */
  @media screen and (max-width: 600px) {
    .container {
      padding: 20px;
    }

    .form-group input {
      width: 100%;
      padding: 10px;
      margin-bottom: 10px;
    }

    .dashboard-title {
      font-size: 20px;
    }

    .form-group label,
    button {
      font-size: 14px;
      padding: 8px;
    }

    .error-message {
      margin-top: 5px;
      font-size: 12px;
    }

    .animation {
      animation-duration: 12s;
    }
  }


  