  :root{
    --neon-blue: #00f3ff;
  }
  body{
    background-color: #050b14;
    display: flex;
    flex-direction: column;

    justify-content: flex-start;
    padding-top: 60px;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    color: white;
    background-image: 
    linear-gradient(rgba(0, 243, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 243, 255, 0.05)1px, transparent 1px);
    background-size: 30px 30px;
    font-family:'Orbitron', sans-serif;
    position: relative;
    padding-bottom: 10px;
    box-sizing: border-box;
  }
  .passHome{
    clip-path: polygon(
      10% 0,       /* Point 1: Top edge, slightly in */
      100% 0,      /* Point 2: Top Right corner */
      100% 90%,    /* Point 3: Right edge, near bottom */
      90% 100%,    /* Point 4: Bottom edge, slightly in */
      0 100%,      /* Point 5: Bottom Left corner */
      0 10%    /* Point 6: Left edge, near top */
    );
    border-radius: 30px;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;

    filter: drop-shadow(0 0 10px var(--neon-blue));
    background-color: rgba(10, 25, 47, 0.9);
    border: 1px solid var(--neon-blue);
    width: 550px;
    height: auto;
    min-height: 900px;
    padding-bottom: 50px;
    padding-top: 30px;
  

    -webkit-transform: translateZ(0);
    transform:translateZ(0);
  }
    label{
    text-align: left;
    font-size: 1em;
    width: 80%;
    text-align: center;
    margin-bottom: -15px;
  }
    .input-style{
    padding: 10px;
    border-radius: 10px;
    border: none;
    width: 80%;
    font-family: 'Orbitron', sans-serif;
    border-bottom: 2px solid var(--neon-blue);
    outline: none;
    background: transparent;
    color: white;
  }
    button{
    cursor: pointer;
  }
    .radio-container{
  display: flex;

  gap: 20px;
  width: 80%;
  justify-content: center;
  }
    .radio-option{

    gap: 5px;
  }
  .radio-option input{
    cursor: pointer;
  }
  .radio-option label{
    cursor: pointer;
  }
  .dashboard-layout{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    width: 100%;
    max-width: 1600px;
    flex-wrap: wrap;
  }
  .left-column{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .custom-tooltip::after{
    content: attr(data-tooltip);

    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%);

    background-color:rgba(10, 25, 47, 0.95) ;
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    text-align:center;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    pointer-events: none;
    
  }
  .custom-tooltip:hover::after{
    opacity: 1;
    visibility: visible;
  }
 @media (max-width: 768px){
    body{
      padding-bottom: 10px;
  
    }
    .passHome{
      order: 2;
      width: 90%;
      min-height: auto;
      padding-bottom: 30px;
      margin: 0px auto;
      padding-top: 50px;
      margin-bottom: 20px;
    }
    .left-column{
      display: contents;
    }
    .dashboard-layout{
      gap: 30px;
      display: flex;
      flex-direction: column;
    }
    #logo-link{
      order: 1;
      align-self:center;
      margin-bottom: 10px;
    }
    #home-button{
     
      width: 120px;
      margin-top: -10px;

    }
    #password-output{
      font-size:0.85rem !important;
      letter-spacing: 1px !important;
      padding-right: 70px !important;
    }
    .custom-tooltip:hover::after{
      opacity: 0;
      visibility: hidden;
    }
    .cyber-footer{
      order: 99;
    }
    
  }

