
:root {
    --primary-color: #000000; /* Example primary color */
    --secondary-color: #FFFFFF; /* Example secondary color */
    --trim-color: #1c1c1c; /* Example trim color */
    --user-color: #2d2d2d4e; /* Example trim color */
  
  
    --card-height: 10vh;
      --card-width: calc(var(--card-height) / 1.5);
      --width: 300px;
      --x-speed: 3s;
      --y-speed: 1s;
      --transition-speed: 2.2s;
  }
  
  
  button:disabled {
    opacity: 0.6; /* Reducing opacity to indicate it's disabled */
    cursor: not-allowed; /* Changing cursor to show it's not clickable */
  }
  
  
  /* styles.css */
  
  /* Define the hummerview class with the background image */
  .hummerview {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: left;
    overflow: hidden;
    
  }
  
  /* Set the background image */
  .hummerview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: left;
    filter: brightness(100%);
    animation: filterAnimation 3s alternate-reverse infinite;
    pointer-events: none; /* Allows interactions with elements behind the vignette */
  }
  
  /* Create the filter effect animation */
  @keyframes filterAnimation {
    0% {
    }
    50% {
    }
    51% {
      filter: invert(100%);
    }
    100% {
      filter: invert(0%);
    }
  }
  
  
  
  
    
    .card {
      width: var(--card-width);
      height: var(--card-height);
      padding: 3px;
      position: relative;
      border-radius: 100%;
      justify-content: center;
      align-items: center;
      text-align: center;
      display: flex;
      font-size: .6em;
      color: rgb(88 199 250 / 0%);
      cursor: pointer;
    }
    
    .card:hover {
      color: rgb(88 199 250 / 100%);
      transition: color 1s;
    }
   .card:hover:after {
      animation: none;
      opacity: 0;
    }
    
    
    
    .card::after {
      position: absolute;
      content: " ";
      top: calc(var(--card-height) / 6);
      left: 0;
      right: 0;
      z-index: -99;
      height: 70%;
      width: 70%;
      margin: 0 auto;
      transform: scale(0.8);
      filter: blur(calc(var(--card-height) / 6));
      background: linear-gradient( #31023c, #3ce34a 43%, #a800c2);;
        
        opacity: .7;
      transition: opacity .5s;
      animation: spin 2.5s linear infinite;
      animation-direction: alternate;
  
  
      
      
    }
    
  
  
  
    @keyframes spin {
      0% {
        --rotate: 0deg;
      }
      100% {
        --rotate: 360deg;
      }
    }
  
    @-webkit-keyframes spin {
      0% {
        --rotate: 0deg;
      }
      100% {
        --rotate: 360deg;
      }
    }
    
    a {
      color: #ffffffa6;
      text-decoration: none;
      font-weight: bold;
      margin-top: 2rem;
    }
  
  
  
    .el { 
      width: var(--width);
      height: var(--width);
    }
    
  
    .x {
      animation: x var(--x-speed) ease infinite alternate;
    }
    .y {
      animation: y var(--y-speed) ease-in-out infinite alternate-reverse;
    }
    
    @keyframes x {
  
      0% {
          transform: translateX(calc(10vw - var(--width)));
        }
      100% {
        transform: translateX(calc(100vw - var(--width)));
      }
    }
    @keyframes y {
      100% {
        transform: translateY(calc(20vh - var(--width)));
      }
    }
  
    @-webkit-keyframes x {
      0% {
          transform: translateX(calc(10vw - var(--width)));
        }
      100% {
        transform: translateX(calc(100vw - var(--width)));
      }
    }
    @-webkit-keyframes y {
      100% {
        transform: translateY(calc(20vh - var(--width)));
      }
    }
    
  
  /*
  Element: Body
  */
  
  
  
  @media  (max-width: 1000px) {
    .column-form {
      width: 100%  !important;
    }


    #notice{
      overflow-y: scroll;
    }

    .login-box {
      width: 100% !important;
      height: 100%;
    }

    .login-box h2 {
      margin: 0 0 30px;
      padding: 0;
      color: #fff;
      text-align: center;
      font-size: 14px;
      
    }
  
  
    body{
      background-size: cover;color: var(--secondary-color);
  overflow-y:scroll;
        }
  
    /* CSS styles for ghostImage */
  .ghost-image {
      width: 175px;
      height: auto;
      position: fixed;
      bottom: 30px;
      left: 20px;
      display: none;
  }
  
  /* CSS styles for loadingMessage */
  .loading-message {
      position: fixed;
      bottom: 50px;
      right: 20px;
      color: #fff;
      opacity: 0;
      font-size: 50px;
  
  }
  
    .stories {
        font-size:40px;
          
          margin: 15px; /* Add spacing between thumbnails */
      }
  
    .strikethrough {
    color:red;
    text-decoration: line-through; /* This creates the strikethrough effect */
  }
  
    #continue-login{
  
      margin: auto;
      margin-top: 20px;
      align-items: center;
      display: flex;
    }
  
    #chat-example{
  text-align:center;
        margin-bottom: 100px;
        font-size: 60px;
      }
  
    .thumbnail {
            border-radius: 100%;
          width:200px; /* Adjust the size as needed */
          height: 200px; /* Same as width to make it square */
          object-fit: cover; /* Preserve aspect ratio and crop if necessary */
          margin: 15px; /* Add spacing between thumbnails */
          border: 2px solid rgba(255, 255, 255, 0.753); /* Optional: Add a border */
      }
  
      .example {
            border-radius: 10%;
          width: 200px; /* Adjust the size as needed */
          height: 200px; /* Same as width to make it square */
          object-fit: cover; /* Preserve aspect ratio and crop if necessary */
          margin: 15px; /* Add spacing between thumbnails */
          border: 2px solid rgba(255, 255, 255, 0.753); /* Optional: Add a border */
      }
    #login-side h2 {
          font-size:30px;
          text-align: center;
  
      /* padding: 60px; */
      text-align: center;
          }
          input[type=email], input[type=password], input[type=text], input[type=date], input[type=file] {
    /* Add your desired input styles here */
   
    width: 100%;
      padding: 10px;
      margin: 5px 0;
      text-align: center;
      font-size: 15px;
  }
  button{
    font-size: 50px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 10px;
  padding-top: 10px;
  border-radius: 10px;
  margin: 25px;
  background-color: black;
  color: white;}
  
  
   .greetings{
    font-size: 175px;
  }
    #mobile {
      display: none;
    }
    #topbar {
      display: none;
    }
    #output {
      display: none;
    }
      #user {
      display: none !important;
    }
  
    #notice {
      height: 100vh;
      display: flex;
      flex-direction: column; /* Stack the divs vertically */
    }
  
    #chat-side, #login-side {
      flex: 1; /* Each side takes equal space */
      width: 100%; /* Full width for each side */
      height: 50vh !important;  }
  
      #login-side {
              flex: 1;
              background-image: linear-gradient(to bottom right, #03001a, #5f005252);
              align-items: center;
              height:100vh;
              display: flex; 
              flex-direction: column; 
              align-items: center;
              
          }
  
          .foot{
  
  bottom: 20px; flex-direction: column; position: absolute; display: flex; width: 50%; align-items: center;
  }
  
  #a-foot{
  
  margin-top: 10px;font-size: 35px;opacity: .5;
  }
  
  #foot-sp{
    width:67%;
    opacity:.4;
  
  }
  
    /* Add any other mobile-specific styles here */
  }
  @media (min-width: 1000px) {
  
    body{
      background-size: cover;color: var(--secondary-color);

  
        }
  
  
  
  
    #foot-sp{
  
      opacity: 0.4; width: 200px; margin-top: 50px;cursor: pointer;
    }
  
    #a-foot{
  
      margin-top: 10px;font-size: 15px;opacity: .5;
    }
  
    .foot{
  
      bottom: 50px; flex-direction: column; position: absolute; display: flex; width: 50%; align-items: center;
    }
  
     /* CSS styles for ghostImage */
  .ghost-image {
      width: 125px;
      height: auto;
      position: fixed;
      bottom: 15px;
      left: 20px;
      display: none;
  
  }
  
  /* CSS styles for loadingMessage */
  .loading-message {
      position: fixed;
      bottom: 30px;
      right: 20px;
      color: #fff;
      opacity: 0;
      font-size: 20px;
  
  }
  
  
  
    .strikethrough {
      color:red;
    text-decoration: line-through; /* This creates the strikethrough effect */
  }
    button{
      cursor: pointer;
  
  font-size: 32px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 10px;
  padding-top: 10px;
  border-radius: 10px;
  margin: 25px;
  background-color: black;
  color: white;
  }
  
  
    #login-side {
     
              flex: 1;
              background-image: linear-gradient(to bottom right, #03001a, #5f005252);
              justify-content: center;
              align-items: center;
              height:100vh;
              display: flex; 
              flex-direction: column; 
              align-items: center;
          }
  
    #chat-example{
  text-align:center;
        margin-bottom: 100px;
        font-size: 40px;
      }
  
    .thumbnail {
            border-radius: 100%;
          width: 110px; /* Adjust the size as needed */
          height: 110px; /* Same as width to make it square */
          object-fit: cover; /* Preserve aspect ratio and crop if necessary */
          margin: 15px; /* Add spacing between thumbnails */
          border: 2px solid rgba(255, 255, 255, 0.753); /* Optional: Add a border */
      }
  
      .example {
            border-radius: 10%;
          width: 110px; /* Adjust the size as needed */
          height: 110px; /* Same as width to make it square */
          object-fit: cover; /* Preserve aspect ratio and crop if necessary */
          margin: 15px; /* Add spacing between thumbnails */
          border: 2px solid rgba(255, 255, 255, 0.753); /* Optional: Add a border */
      }
      .stories {
        font-size:40px;
          
          margin: 15px; /* Add spacing between thumbnails */
      }
    .message {
                   margin-right:30%; 
          }
    #notice {
    }
  .greetings{
    font-size: 175px;
  
    margin-left: 200px;
  }
    #mobile {
      display: none;
    }
    #output{
      display: none;
  
    }
    #user{
      display: none !important;
  
    }
  }
  * {
    box-sizing: border-box;
  }
  
  
  
  
  /*
  Element: Header Bar
  */
  #topbar{
  top:0;
  width:100%;
  border-color: transparent;
  background-color: var (var(--primary-color));
  position: sticky;
  height: 120px;
  border-bottom-color: rgba(151, 147, 147, 0.24);
  border-top-width: 2px;
    border-style: solid;
  }
  
  /* ... (Previous CSS styles) ... */
  
  .arrow-down {
    width: 0;
      height: 0;
      border-left: 20px solid transparent;
      border-right: 20px solid transparent;
      border-top: 20px solid var(--secondary-color);
      margin-left: 5px;
  }
  
  /* ... (Remaining CSS styles) ... */
  
  
  #custom-dropdown {
    position: relative;
    display: inline-block;
    margin-right: 20px;
  }
  
  .dropdown-header {
    font-size: 35px;
  
      cursor: pointer;
      padding: 24px;
      border: 3px solid #ccc;
      border-radius: 5px;
      background-color: var(--primary-color);
      display: flex;
      align-items: center;
      right: 0;
      position: fixed;
      top: 13px;
      margin-right: 50px;
      border-radius: 25px;
  }
  
  .dropdown-content {
     font-size: 35px;
      cursor: pointer;
    right: 0;
      position: fixed;
      top: 90px;
    display: none;
    border-radius: 15px;
    border-color: white;
    border-style: solid;
    z-index: 1;
    width: 70%;
    margin-right: 50px;
  /* Adjust width as needed */
  }
  
  .dropdown-option {
    border-color: rgba(255, 255, 255, 0.779);
    border-style: solid;
    padding: -100px;
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 3;
    background-color: var(--primary-color);
    color: var(--secondary-color);
  }
  
  #asspic {
    width: 250px;
      height: 120px;
      margin-right: 10px;
      object-fit: cover;
      top: 0;
      position: fixed;
      right: 0;
      display: none;
  }
  
  
  /* 
  Element: Hamburger
  */
  
  #hamburger-icon {
        margin: 40px;
        width: 70px;
        cursor: pointer;
      }
  #hamburger-icon.active .bar1 {
        transform: rotate(-45deg) translate(-5px, 6px);
      }
  
  #hamburger-icon.active .bar2 {
        opacity: 0;
      }
  
  #hamburger-icon.active .bar3 {
        transform: rotate(45deg) translate(-5px, -6px);
      }
  
  .bar {
        width: 55px;
      height: 7px;
      background-color: var(--secondary-color);
      margin: 10px 0;
      transition: 0.4s;
      }
  
      /*
  Element: Clickable Card
  */
  
  
  #timer-container{
    display:none;
  }
  
  
  .clickable-card {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    margin: 10px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    width:50%;
    float: right;position: absolute;
    right:0;top:150px;
  }
  
  .clickable-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .clickable-card h3 {
    margin: 0;
    font-size: 43px;
    color: #cacaca;
  }
  
  .clickable-card p {
    margin: 10px 0 0;
    font-size: 37px;
    color: #666;
  }
  
  
  
  
  /*
  ELEMENT: TIPS TIPS TIPS
  */
  
  .tips {
    padding: 30px;
    width: 90%;
    border-width: 2px;
    height: 300px;
    border-style: solid;
    background-color: #c0c0c01f;
    font-size: 45px;
    margin-top: 100px;
  text-align:center ;
    margin-left: auto;
    margin-right: auto;
    /* Flexbox styles for centering */
    display: flex;
    justify-content: center; /* Horizontal center */
    align-items: center; /* Vertical center */
    border-radius: 50px;
    border-top-left-radius: 10px;
    animation: glisten 3s infinite; /* Adding the animation */
  
  }
  @keyframes glisten {
    0%, 100% {
      opacity: 0.2; /* Lower opacity for fully visible */
    }
    50% {
      opacity: 1; /* Higher opacity for the glistening effect */
    }
  }
  
  /*
  Element: Timer (Clickable Card)
  */
  
  .base-timer {
    position: relative;
    width: 200px;
    height: 200px;
  
  margin-left: 35px;
  margin-top: 35px;}
  
  .base-timer__svg {
    transform: scaleX(-1);
  }
  
  .base-timer__circle {
    fill: none;
    stroke: none;
  }
  
  .base-timer__path-elapsed {
    stroke-width: 7px;
    stroke: grey;
  }
  
  .base-timer__path-remaining {
    stroke-width: 7px;
    stroke-linecap: round;
    transform: rotate(90deg);
    transform-origin: center;
    transition: 1s linear all;
    fill-rule: nonzero;
    stroke: currentColor;
  }
  
  .base-timer__path-remaining.green {
    color: rgb(65, 184, 131);
  }
  
  .base-timer__path-remaining.orange {
    color: orange;
  }
  
  .base-timer__path-remaining.red {
    color: red;
  }
  
  .base-timer__label {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
  }
  
      
  
  /* 
  Element: Sidebar
  */
  
  #sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: var(--trim-color);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
  }
  
  .settings-list {
    padding: 10px;
    text-align: left;
  }
  
  .setting-item {
    padding: 15px;
    margin: 25px;
    color: white;
    font-size: 40px;
    transition: 0.3s;
  }
  .setting-item-down {
    padding: 15px;
    margin: 25px;
    color: white;
    font-size: 40px;
    transition: 0.3s;
  bottom: 40px;
  position: absolute;}
  
  .setting-item:hover {
    background-color: #555;
  }
  #sidebar-content {
    padding-top: 60px;
  }
  
  #close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 70px;
    color: white;
    cursor: pointer;
  }
  
  
  
  
  
  
  
  
  
  
  .object-container {
    position: relative;
    padding-left: 7%;
    height: 100%;
    overflow: hidden; /* Hide overflow from child element */
  }
  
  .object-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #041005a3;
    z-index: -1;
    filter: brightness(150%) hue-rotate(0deg);
    animation: shimmer 2s infinite alternate-reverse;
  }
  
  .object-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, #041005a3 40%, #041005a3 100%);
    pointer-events: none; /* Allow interaction with underlying content */
    z-index: -1;
  }
  
  @keyframes shimmer {
    0% {
      filter: brightness(150%) hue-rotate(0deg);
    }
    20% {
      filter: brightness(150%) hue-rotate(45deg);
    }
    40% {
      filter: brightness(150%) hue-rotate(90deg);
    }
    60% {
      filter: brightness(150%) hue-rotate(135deg);
    }
    80% {
      filter: brightness(150%) hue-rotate(180deg);
    }
    100% {
      filter: brightness(150%) hue-rotate(225deg);
    }
  }
  
  
  .hummer-feat-title {
    font-size: 100px;
    width:300px;
    margin-top: 50px;
  }
  .hummer-feat-card {
    font-size: 100px;
      width: 95%;
      margin-top: 50px;
      border-radius: 43px !important;
  }
  
  .hummer-feat-co {
    font-size: 100px;
    width:200px;
  opacity: 0.4 !important;
  }
  
  
  .hummer-feat-description {
    margin-top: 100px;
      font-size: 55px;
      padding-right: 30px;
      margin-bottom: 10px;
      /* Other description styles */
  }
  
  .hummer-feat-name {
    padding-top: 70px;
      font-size: 80px;
      margin-bottom: 10px;
      /* Other description styles */
  }
  
  .hummer-feat-cost {
    font-weight: bolder;
      margin-top: 100px;
      font-size: 75px;
      color: grey;
  }
  
  .hummer-feat-button {
    margin-top: 80px;
      padding: 25px;
      font-size: 65px;
      background-color: #0000002e;
      border-radius: 50px;
      color: #fff;
      border: none;
      border-width: 0px;
      cursor: pointer;
      display: block;
      /* Other button styles */
  }
  
  button:disabled {
      opacity: 0.4 !important;
      cursor: not-allowed;
  }
  
  #hummernext {
    background-color: transparent;
      color: white;
      font-size: 150px;
      border-width: 0px;
      border-radius: 0;
      right: 0;
      position: fixed;
      margin-right: 50px;
      animation: glisten 1s infinite; /* Adding the animation */
  
  }
  
  /* 
  Element: Modal
  */
  
  
  
  #modal-content {
    background-color: var(--primary-color);
      color: var(--secondary-color);
      padding: 60px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      z-index: 99;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: none;
      width: 75%;
      font-size: 33px;
      border-style: solid;
      border-color: #ffffff;
      
  }
  
  #modal-content > h2{
    opacity: .4;
      font-size: 60px;
  }
  
  #modal-content > p{
  font-size:50px;
  }
  
  
  
      .modal-close {
        cursor: pointer;
        color: #888;
        font-size: 20px;
        margin-top: 10px;
      }
    
  
  #modal-content > label > input[type="radio"] {
    margin-right: 50px; 
    margin-top: 100px; 
    transform: scale(5.5);
  }
  
  #modal-content  > input[type="number"] {
   font-size:43px;
   margin-top:33px;
   margin-bottom:5px;
  
    
  }
  
  #modal-content > label {
  font-size:45px;
  margin-top:10px;
  
  }
  
  
  #modal-content     select{
  font-size: 37px;
  padding: 25px;
  color:var(--secondary-color);
  border-width: 5px;
  border-radius: 10px;
  border-color: var(--secondary-color);
  background-color: transparent;
  margin-top:50px;
  }
  
  #modal-content .arrow-buttons button{
    margin-top: 0px !important;
    font-size: 35px;
      padding: 10px;
      border-radius: 50px;
  }
  
  
  #modal-content  button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px;
    border-radius: 25px;
    font-size: 43px;
    margin-top:150px;
  
  }
  
  #currentbalance
  {font-size:80px;font-weight:bolder;}
  
  
  
  
  
  /*
  Element: Output Area (Conversation Section)
  */
  
  #output{
    font-size: 40px;
    overflow-y: scroll;
    height: 100%; /* Adjust the height according to your needs */
  
  }
  
  .pathdalle{
  
    width: 75%;
  }
  
  
  /*
  Element: User
  */
  #user{
    display: flex;
    bottom: 0;
      text-align: left;
      bottom: 0;
      width: 100%;
      font-size: 37px;
      position: fixed;
      border-color: transparent;
      background-color: var(--primary-color);
    
    border-top-color: rgba(86, 86, 86, 0.24);
    border-top-width: 2px;
    padding-top: 25px;
    border-style: solid;
  }
  
  /*
  Element: User Input
  */
  
  #inputtext{
      padding: 25px;
      color: #fefefe;
      background-color: #3434345e;
      outline: none;
      text-align: left;
      width: 90%;
      font-size: 37px;
      border-radius: 30px;
  
      border-top-left-radius: 0px;
      border-bottom-left-radius: 0px;
      background-clip: padding-box;
      margin-bottom: 50px;
      margin-left: 21px;
    }
  
    #inputtext::placeholder {
      color: rgb(117, 117, 117);
  }
  
  
  /*
  Element: Send Buttons & Login Buttons
  */
    #send , #loginbutt{
    font-size: 40px;
    padding: 25px;
    border-radius: 50px;
    background-color: transparent;
    border: 0px;
    margin-left: 20px;
    margin-bottom: 20px;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(to right, #727d72, #353e35, #888b88, #171817, #7c807c, #353735, #a4a4a4, #444444, #000000, #001a00);
    background-size: 200% auto;
    animation: flowingGradient 2s infinite alternate-reverse;
  }
  
  #send{
    font-size: 40px;
    padding: 25px;
    border-radius: 50px;
    background-color: transparent;
    border: 0px;
    margin-left: 20px;
    margin-bottom: 20px;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(to right, #727d72, #353e35, #888b88, #171817, #7c807c, #353735, #a4a4a4, #444444, #000000, #001a00);
    background-size: 200% auto;
    animation: flowingGradient 2s infinite alternate-reverse;
  }
  
  @keyframes flowingGradient {
    0% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 100% 50%;
    }
  }
  
  
  
  
  /*
  Element: Bubbles
  */
  .assistant-bubble{
    border-color: transparent;
    border-bottom-color: rgba(97, 97, 97, 0.24);
  border-width: 5px;
  border-style: solid;
    background-color:transparent;
  }
  
  .user-bubble{
    background-color: #2d2d2d4e;
    border-color: transparent;
  border-bottom-color: rgba(46, 46, 46, 0.24);
  border-width: 5px;
  border-style: dashed;
  }
  
        .chat-bubble{
      padding: 50px;
      display: flex;
    align-items: flex-start;
        }
  
  /*
  Element: Avatars
  */
        .avatar{
  width:175px;
  border-radius: 100%;
  margin-right:10px;
  align-self: flex-start;
        }
  
  /*
  Element: Message Component
  */
  
        .message{
  bottom: 88px;
  position: relative;
          margin-top: auto;
          word-break: break-word; 
    white-space: pre-line;
    padding:75px;
        }
  
    
  
  
  
  /*
  Element: Themes Stuff
  */
  
  #themelight {
  
      }
  
      #themedark {
        font-family: 'Press Start 2P', cursive;
      }
  
      #themezero {
      }
  
  
          #login-side h2 {
              color: rgb(255, 255, 255);
              padding: 30px;
      text-align: center;
          }
  
          
  
        #chat-side {
      flex: 1;
      background: url('zero1.png') no-repeat center center;
      background-size: cover;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100vh;
      width:51vw;
      background-color: #000000; /* Fallback color */
  }
  
  
          #chat-box {
            max-width: 80%;
              padding: 20px;
              font-size:3rem;
              display:none;
          }
  
          .bot-name {
              font-size: 16px;
              font-weight: bold;
              margin-bottom: 10px;
              position: absolute;
              top: 10px;
              left: 10px;
              width: 200px;       }
  
   
  
  
    
  
      input[type=email], input[type=password], input[type=text], input[type=date], input[type=file] {
    /* Add your desired input styles here */
    width: 100%; /* Example: full-width inputs */
    padding: 10px; /* Example: padding for inputs */
    margin: 5px 0; /* Example: margin for spacing */
  text-align: center;
  }
  
  #error-message-login{
    text-align: center;
      color: red;
  }
  
  #error-message{
    text-align: center;
      color: red;
  }
  input::placeholder {
    opacity: 0.5; /* Set the opacity of placeholder text */
    color: #000; /* Change the color as needed, example is black */
  }
  .night {
    top: -200%;
      position: relative;
      width: 50%;
      opacity: .7;
      height: 100%;
      transform: rotateZ(45deg);
    }
    
    .shooting_star {
      opacity:.4 !important;
  z-index: -1;
      position: absolute;
      left: 50%;
      top: 50%;
  opacity: .5;
      height: 5px;
      background: linear-gradient(-45deg, #eaff5f, rgba(0, 0, 255, 0));    border-radius: 999px;
      filter: drop-shadow(0 0 6px #699bff);
      -webkit-animation: tail 3000ms ease-in-out infinite, shooting 3000ms ease-in-out infinite;
              animation: tail 3000ms ease-in-out infinite, shooting 3000ms ease-in-out infinite;
    }
    .shooting_star::before {
      content: "";
      position: absolute;
      top: calc(50% - 1px);
      right: 0;
      height: 2px;
      background: linear-gradient(-45deg, rgba(0, 0, 255, 0), #aa00ff, rgba(0, 0, 255, 0));
      transform: translateX(50%) rotateZ(45deg);
      border-radius: 100%;
      -webkit-animation: shining 3000ms ease-in-out infinite;
              animation: shining 3000ms ease-in-out infinite;
    }
    .shooting_star::after {
      content: "";
      position: absolute;
      top: calc(50% - 1px);
      right: 0;
      height: 2px;
      background: linear-gradient(-45deg, rgba(0, 0, 255, 0), #019834, rgba(0, 0, 255, 0));
      transform: translateX(50%) rotateZ(45deg);
      border-radius: 100%;
      -webkit-animation: shining 3000ms ease-in-out infinite;
              animation: shining 3000ms ease-in-out infinite;
      transform: translateX(50%) rotateZ(-45deg);
    }
    .shooting_star:nth-child(1) {
      top: calc(50% - -82px);
      left: calc(50% - 28px);
      -webkit-animation-delay: 3274ms;
              animation-delay: 3274ms;
    }
    .shooting_star:nth-child(1)::before, .shooting_star:nth-child(1)::after {
      -webkit-animation-delay: 3274ms;
              animation-delay: 3274ms;
    }
    .shooting_star:nth-child(2) {
      top: calc(50% - 150px);
      left: calc(50% - 208px);
      -webkit-animation-delay: 2651ms;
              animation-delay: 2651ms;
    }
    .shooting_star:nth-child(2)::before, .shooting_star:nth-child(2)::after {
      -webkit-animation-delay: 2651ms;
              animation-delay: 2651ms;
    }
    .shooting_star:nth-child(3) {
      top: calc(50% - -40px);
      left: calc(50% - 293px);
      -webkit-animation-delay: 8247ms;
              animation-delay: 8247ms;
    }
    .shooting_star:nth-child(3)::before, .shooting_star:nth-child(3)::after {
      -webkit-animation-delay: 8247ms;
              animation-delay: 8247ms;
    }
    .shooting_star:nth-child(4) {
      top: calc(50% - 16px);
      left: calc(50% - 90px);
      -webkit-animation-delay: 8872ms;
              animation-delay: 8872ms;
    }
    .shooting_star:nth-child(4)::before, .shooting_star:nth-child(4)::after {
      -webkit-animation-delay: 8872ms;
              animation-delay: 8872ms;
    }
    .shooting_star:nth-child(5) {
      top: calc(50% - 184px);
      left: calc(50% - 267px);
      -webkit-animation-delay: 1467ms;
              animation-delay: 1467ms;
    }
    .shooting_star:nth-child(5)::before, .shooting_star:nth-child(5)::after {
      -webkit-animation-delay: 1467ms;
              animation-delay: 1467ms;
    }
    .shooting_star:nth-child(6) {
      top: calc(50% - -150px);
      left: calc(50% - 175px);
      -webkit-animation-delay: 2004ms;
              animation-delay: 2004ms;
    }
    .shooting_star:nth-child(6)::before, .shooting_star:nth-child(6)::after {
      -webkit-animation-delay: 2004ms;
              animation-delay: 2004ms;
    }
    .shooting_star:nth-child(7) {
      top: calc(50% - 191px);
      left: calc(50% - 200px);
      -webkit-animation-delay: 6770ms;
              animation-delay: 6770ms;
    }
    .shooting_star:nth-child(7)::before, .shooting_star:nth-child(7)::after {
      -webkit-animation-delay: 6770ms;
              animation-delay: 6770ms;
    }
    .shooting_star:nth-child(8) {
      top: calc(50% - -73px);
      left: calc(50% - 237px);
      -webkit-animation-delay: 3399ms;
              animation-delay: 3399ms;
    }
    .shooting_star:nth-child(8)::before, .shooting_star:nth-child(8)::after {
      -webkit-animation-delay: 3399ms;
              animation-delay: 3399ms;
    }
    .shooting_star:nth-child(9) {
      top: calc(50% - -85px);
      left: calc(50% - 231px);
      -webkit-animation-delay: 1757ms;
              animation-delay: 1757ms;
    }
    .shooting_star:nth-child(9)::before, .shooting_star:nth-child(9)::after {
      -webkit-animation-delay: 1757ms;
              animation-delay: 1757ms;
    }
    .shooting_star:nth-child(10) {
      top: calc(50% - 160px);
      left: calc(50% - 19px);
      -webkit-animation-delay: 9666ms;
              animation-delay: 9666ms;
    }
    .shooting_star:nth-child(10)::before, .shooting_star:nth-child(10)::after {
      -webkit-animation-delay: 9666ms;
              animation-delay: 9666ms;
    }
    .shooting_star:nth-child(11) {
      top: calc(50% - -3px);
      left: calc(50% - 23px);
      -webkit-animation-delay: 7193ms;
              animation-delay: 7193ms;
    }
    .shooting_star:nth-child(11)::before, .shooting_star:nth-child(11)::after {
      -webkit-animation-delay: 7193ms;
              animation-delay: 7193ms;
    }
    .shooting_star:nth-child(12) {
      top: calc(50% - -79px);
      left: calc(50% - 91px);
      -webkit-animation-delay: 630ms;
              animation-delay: 630ms;
    }
    .shooting_star:nth-child(12)::before, .shooting_star:nth-child(12)::after {
      -webkit-animation-delay: 630ms;
              animation-delay: 630ms;
    }
    .shooting_star:nth-child(13) {
      top: calc(50% - -106px);
      left: calc(50% - 119px);
      -webkit-animation-delay: 5611ms;
              animation-delay: 5611ms;
    }
    .shooting_star:nth-child(13)::before, .shooting_star:nth-child(13)::after {
      -webkit-animation-delay: 5611ms;
              animation-delay: 5611ms;
    }
    .shooting_star:nth-child(14) {
      top: calc(50% - -33px);
      left: calc(50% - 57px);
      -webkit-animation-delay: 7791ms;
              animation-delay: 7791ms;
    }
    .shooting_star:nth-child(14)::before, .shooting_star:nth-child(14)::after {
      -webkit-animation-delay: 7791ms;
              animation-delay: 7791ms;
    }
    .shooting_star:nth-child(15) {
      top: calc(50% - 50px);
      left: calc(50% - 87px);
      -webkit-animation-delay: 2155ms;
              animation-delay: 2155ms;
    }
    .shooting_star:nth-child(15)::before, .shooting_star:nth-child(15)::after {
      -webkit-animation-delay: 2155ms;
              animation-delay: 2155ms;
    }
    .shooting_star:nth-child(16) {
      top: calc(50% - -91px);
      left: calc(50% - 94px);
      -webkit-animation-delay: 1108ms;
              animation-delay: 1108ms;
    }
    .shooting_star:nth-child(16)::before, .shooting_star:nth-child(16)::after {
      -webkit-animation-delay: 1108ms;
              animation-delay: 1108ms;
    }
    .shooting_star:nth-child(17) {
      top: calc(50% - 105px);
      left: calc(50% - 161px);
      -webkit-animation-delay: 6197ms;
              animation-delay: 6197ms;
    }
    .shooting_star:nth-child(17)::before, .shooting_star:nth-child(17)::after {
      -webkit-animation-delay: 6197ms;
              animation-delay: 6197ms;
    }
    .shooting_star:nth-child(18) {
      top: calc(50% - 75px);
      left: calc(50% - 103px);
      -webkit-animation-delay: 8158ms;
              animation-delay: 8158ms;
    }
    .shooting_star:nth-child(18)::before, .shooting_star:nth-child(18)::after {
      -webkit-animation-delay: 8158ms;
              animation-delay: 8158ms;
    }
    .shooting_star:nth-child(19) {
      top: calc(50% - 80px);
      left: calc(50% - 62px);
      -webkit-animation-delay: 8409ms;
              animation-delay: 8409ms;
    }
    .shooting_star:nth-child(19)::before, .shooting_star:nth-child(19)::after {
      -webkit-animation-delay: 8409ms;
              animation-delay: 8409ms;
    }
    .shooting_star:nth-child(20) {
      top: calc(50% - -131px);
      left: calc(50% - 246px);
      -webkit-animation-delay: 887ms;
              animation-delay: 887ms;
    }
    .shooting_star:nth-child(20)::before, .shooting_star:nth-child(20)::after {
      -webkit-animation-delay: 887ms;
              animation-delay: 887ms;
    }
    
    @-webkit-keyframes tail {
      0% {
        width: 0;
      }
      30% {
        width: 100px;
      }
      100% {
        width: 0;
      }
    }
    
    @keyframes tail {
      0% {
        width: 0;
      }
      30% {
        width: 100px;
      }
      100% {
        width: 0;
      }
    }
    @-webkit-keyframes shining {
      0% {
        width: 0;
      }
      50% {
        width: 30px;
      }
      100% {
        width: 0;
      }
    }
    @keyframes shining {
      0% {
        width: 0;
      }
      50% {
        width: 30px;
      }
      100% {
        width: 0;
      }
    }
    @-webkit-keyframes shooting {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(300px);
      }
    }
    @keyframes shooting {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(300px);
      }
    }
    @-webkit-keyframes sky {
      0% {
        transform: rotate(45deg);
      }
      100% {
        transform: rotate(405deg);
      }
    }
    @keyframes sky {
      0% {
        transform: rotate(45deg);
      }
      100% {
        transform: rotate(405deg);
      }
    }
  
  
  
  .login-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
height: 100%;
    padding: 40px;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0);
    box-sizing: border-box;
    border-radius: 10px;
    z-index: 99999;
  }
  
  .login-box h2 {
    margin: 0 0 30px;
    padding: 0;
    color: #fff;
    text-align: left;
    
  }
  
  
  
  .login-box .user-box {
    position: relative;
  }
  
  
  
  
  
  
  
  
  
  
  .login-box a:hover {
    background: #ffffff;
    color: #4ce0b1;
    border-radius: 5px;
    box-shadow: 0 0 5px #460159,
                0 0 25px #005624,
                0 0 50px #aba0ff,
                0 0 100px #f003f4;
  }
  
  .login-box a span {
    position: absolute;
    display: block;
  }
  
  .login-box a span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #a003f4);
    animation: btn-anim1 1s linear infinite;
  }
  
  @keyframes btn-anim1 {
    0% {
      left: -100%;
    }
    50%,100% {
      left: 100%;
    }
  }
  
  .login-box a span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #f003f4);
    animation: btn-anim2 1s linear infinite;
    animation-delay: .25s
  }
  
  @keyframes btn-anim2 {
    0% {
      top: -100%;
    }
    50%,100% {
      top: 100%;
    }
  }
  
  .login-box a span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #03f467);
    animation: btn-anim3 1s linear infinite;
    animation-delay: .5s
  }
  
  @keyframes btn-anim3 {
    0% {
      right: -100%;
    }
    50%,100% {
      right: 100%;
    }
  }
  
  .login-box a span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #aba0ff);
    animation: btn-anim4 1s linear infinite;
    animation-delay: .75s
  }
  
  @keyframes btn-anim4 {
    0% {
      bottom: -100%;
    }
    50%,100% {
      bottom: 100%;
    }
  }
  
  .hidden {
  
    display:none;
  }
  
  
  
  .column .question {
    width: calc(25% - 50px); /* Adjust as needed */
  }
  
  .column-form {
    width: 100% ;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  @media  (max-width: 1000px) {
  
    .login-box h1 {
    margin: 0 0 30px;
    padding: 0;
    color: #fff;
    text-align: center;
    font-size:20px;
  
  }
  
    .column {
    justify-content: space-between;
    width: 100%;
    margin-top: 50px;
  }
  
  .login-box .user-box label {
    position: absolute;
    top:0;
    left: 0;
    padding: 10px 0;
    font-size: 20px;
    color: #fff;
    pointer-events: none;
    transition: .5s;
  }
  
  .login-box .question label {
    
    padding: 10px 0;
    font-size: 50px;
    color: #fff;
    pointer-events: none;
    transition: .5s;
  }
  .question input[type="radio"] {
    margin-top: 60px;
      transform: scale(3.5);
      margin-right: 38px;
  }
  
  .column .user-box {
  }
  
  .login-box .user-box input {
    -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
    width: 100%;
    padding: 10px 0;
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
    border-top-width: 0;
    border-right-width: 0;
    border-left-width: 0;
    box-shadow: none;
  
  }
  .login-box form a {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 17px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    margin-top: 40px;
    letter-spacing: 4px
  }
  
  .login-box .user-box textarea {
    width: 100%;
    padding: 40px 0;
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
  }
  .login-box .question input:focus ~ label,
  .login-box .question input:valid ~ label {
    top: -20px;
    left: 0;
    color: #a003f4;
    font-size: 40px;
  }
  
  .login-box .user-box input:focus ~ label,
  .login-box .user-box input:valid ~ label {
    top: -20px;
    left: 0;
    color: #a003f4;
    font-size: 22px;
  }
  
  .login-box .user-box textarea:focus ~ label,
  .login-box .user-box textarea:valid ~ label {
    top: -20px;
    left: 0;
    color: #a003f4;
    font-size: 22px;
  }
  
  .form-pic{
  
  margin: 0 auto 20px;  
  display: block;
  width:50%;
  }
  
  #avatar-zero{
  
  margin: 0 auto 20px;  
  display: block;
  margin:0 !important;width:400px;border-radius:100%;
  }
  #avatar-name{
    font-weight: 400;
    font-style: normal;
    font-size: 65px;
  
   }
  
   #avatar-city{
    font-style: italic;
    font-size: 50px;
  
   }
  
   #avatar-residuals{
    font-weight:normal;
    color:purple;
    font-size: 50px;
  
   }
   #avatar-desc{
    font-weight:normal;
    
    font-size: 45px;
  
   }
  }
  
  @media  (min-width: 1000px) {
  
    .question label{
  
      font-size: 25px;
    }
  
    .login-box h1 {
    margin: 0 0 30px;
    padding: 0;
    color: #fff;
    text-align: left;
    font-size:34px;
  
  }
  #avatar-zero{
  
  margin: 0 auto 20px;  
  display: block;
  margin:0 !important;width:150px;border-radius:100%;
  }
  #avatar-name{
    font-weight: 400;
    font-style: normal;
    font-size:34px;
  
   }
  
   #avatar-city{
    font-style: italic;
    font-size:25px;
  
   }
  
   #avatar-residuals{
    font-weight:normal;
    color:purple;
    font-size:25px;
  
   }
   #avatar-desc{
    font-size:22px;
  
  
   }
  
    .form-pic{
  
      margin: 0 auto 20px;  
      display: block;
      width:200px;
    }
    .column {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 50px;
  }
  
  .login-box .user-box label {
    position: absolute;
    top:0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    pointer-events: none;
    transition: .5s;
  }
  
  .login-box .question label {
    
    padding: 10px 0;
    font-size: 26px;
    color: #fff;
    pointer-events: none;
    transition: .5s;
  }
  .question input[type="radio"] {
    margin-top: 60px;
      transform: scale(2.5);
      margin-right: 38px;
  }
  
  .column .user-box {
    width: calc(25% - 10px); /* Adjust as needed */
  }
  
  
  .login-box .user-box input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
    border-top-width: 0;
    border-right-width: 0;
    border-left-width: 0;
  
  
  
  }
  
  .login-box form a {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    margin-top: 40px;
    letter-spacing: 4px
  }
  
  .login-box .user-box textarea {
    width: 100%;
    padding: 40px 0;
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
  }
  
  .login-box .question input:focus ~ label,
  .login-box .question input:valid ~ label {
    top: -20px;
    left: 0;
    color: #a003f4;
    font-size: 20px;
  }
  
  .login-box .user-box input:focus ~ label,
  .login-box .user-box input:valid ~ label {
    top: -20px;
    left: 0;
    color: #a003f4;
    font-size: 12px;
  }
  
  .login-box .user-box textarea:focus ~ label,
  .login-box .user-box textarea:valid ~ label {
    top: -20px;
    left: 0;
    color: #a003f4;
    font-size: 12px;
  }
  
  }
  
  .disabled {
      opacity: 0.4 !important;
      
  }
  
  