
    /* Font import and global reset */
    @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

    /* Global reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Quicksand', sans-serif;
    }

    /* Body styling */
    body {
      background: #000;
      overflow-x:hidden!important;
    }
    .custom-file-label {
      display: inline-block;
      padding: 20px 81px;
      background-color: #333333;
      color: #fff;
      border-radius: 4px;
      cursor: pointer;
      transition: background-color 0.2s;
  }
    
    .custom-file-label:hover {
      background-color: #C3001E;
    }
    .form-check-input:checked[type=checkbox] {
      background-image: linear-gradient(310deg, #f00 0%, #caaf9c 100%)!important;
  }
  .text-f00{
    background: #f00!important;
    color:black!important;
  }
    /* Section styles */
    section {
      position: absolute;
      width: 100vw;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 2px;
      flex-wrap: wrap;
      overflow: hidden;
    }

    /* Animated gradient effect */
    section::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background: linear-gradient(#000, #f00, #000);
      animation: animate 5s linear infinite;
    }

    /* Animation keyframes */
    @keyframes animate {
      0% {
        transform: translateY(-100%);
      }
      100% {
        transform: translateY(100%);
      }
    }

    /* Styling for individual spans */
    section span {
      position: relative;
      display: block;
      width: calc(6.25vw - 2px);
      height: calc(6.25vw - 2px);
      background: #181818;
      z-index: 2;
      transition: 1.5s;
    }

    section span:hover {
      background: #f00;
      transition: 0s;
    }

    /* Sign-in form styles */
    .signin {
      position: absolute;
      margin: 15px;
      min-width:400px;
      background: rgba(255, 255, 255, 0); /* Semi-transparent white */
      border: 1px solid rgba(255, 255, 255, 0.3); /* Light border */
      backdrop-filter: blur(15px);       /* Standard syntax */
      -webkit-backdrop-filter: blur(15px); /* For WebKit browsers */      
      z-index: 1000;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px;
      border-radius: 1rem;
      box-shadow: 0 15px 35px #c3001e40;
    }
    .signup {
      position: absolute;
      margin: 15px;
      background: rgba(255, 255, 255, 0); /* Semi-transparent white */
      border: 1px solid rgba(255, 255, 255, 0.3); /* Light border */
      backdrop-filter: blur(15px);       /* Standard syntax */
      -webkit-backdrop-filter: blur(15px); /* For WebKit browsers */      top: 120px;
      z-index: 1000;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px;
      border-radius: 1rem;
      box-shadow: 0 15px 35px #c3001e40;
  }

    .signin .content {
      position: relative;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 40px;
    }

    .signin .content h2 {
      font-size: 2em;
      color: #f00;
      text-transform: uppercase;
    }

    .signin .content .form {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .signin .content .form .inputBox {
      position: relative;
      width: 100%;
    }

    .signin .content .form .inputBox input {
      position: relative;
      width: 100%;
      background: #333;
      border: none;
      outline: none;
      padding: 25px 10px 7.5px;
      border-radius: 4px;
      color: #fff;
      font-weight: 500;
      font-size: 1em;
    }

    .signin .content .form .inputBox i {
      position: absolute;
      left: 0;
      padding: 15px 10px;
      font-style: normal;
      color: #aaa;
      transition: 0.5s;
      pointer-events: none;
    }

    .signin .content .form .inputBox input:focus ~ i,
    .signin .content .form .inputBox input:valid ~ i {
      transform: translateY(-7.5px);
      font-size: 0.8em;
      color: #fff;
    }

    .signin .content .form .links {
      position: relative;
      width: 100%;
      display: flex;
      justify-content: space-between;
    }

    .signin .content .form .links a {
      color: #fff;
      text-decoration: none;
    }

    .signin .content .form .links a:nth-child(2) {
      color: #f00;
      font-weight: 600;
    }

    .signin .content .form .inputBox input[type="submit"] {
      padding: 10px;
      background: #f00;
      color: #000;
      font-weight: 600;
      font-size: 1.35em;
      letter-spacing: 0.05em;
      cursor: pointer;
    }

    input[type="submit"]:active {
      opacity: 0.6;
    }
/*signup*/


.signup .content {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}

.signup .content h2 {
  font-size: 2em;
  color: #f00;
  text-transform: uppercase;
}

.signup .content .form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.signup .content .form .inputBox {
  position: relative;
  width: 100%;
}

.signup .content .form .inputBox input {
  position: relative;
  width: 100%;
  background: #333;
  border: none;
  outline: none;
  padding: 25px 10px 7.5px;
  border-radius: 4px;
  color: #fff;
  font-weight: 500;
  font-size: 1em;
}

.signup .content .form .inputBox i {
  position: absolute;
  left: 0;
  padding: 15px 10px;
  font-style: normal;
  color: #aaa;
  transition: 0.5s;
  pointer-events: none;
}

.signup .content .form .inputBox input:focus ~ i,
.signup .content .form .inputBox input:valid ~ i {
  transform: translateY(-7.5px);
  font-size: 0.8em;
  color: #fff;
}

.signup .content .form .links {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.signup .content .form .links a {
  color: #fff;
  text-decoration: none;
}

.signup .content .form .links a:nth-child(2) {
  color: #f00;
  font-weight: 600;
}
.disappear{
  display: block;
}
.signup .content .form .inputBox input[type="submit"] {
  padding: 10px;
  background: #f00;
  color: #000;
  font-weight: 600;
  font-size: 1.35em;
  letter-spacing: 0.05em;
  cursor: pointer;
}
@media (min-width: 900px) and (max-width: 1400px) {
  .midway {
    display: block !important;
  }
}

@media (max-width: 899px), (min-width: 1401px) {
  .midway {
    display: none !important;
  }
}

    /* Media queries for responsive design */
    @media (max-width: 900px) {
      section span {
        width: calc(10vw - 2px);
        height: calc(10vw - 2px);
      }
                    .signup {width:90%;}
        .signin{ width:90%;}
    }

    @media (max-width: 600px) {
      section span {
        width: calc(20vw - 2px);
        height: calc(20vw - 2px);
      }
      .disappear{
        display: none!important;
      }
    }

