* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: .3s;
  user-select: none;
}


body {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', Helvetica, sans-serif;
  min-height: 100vh;
  overflow: hidden;
}
.inner {
    margin: 0;
    display: flex;
    justify-content: center; /* Horizontally center the content */
    align-items: center;   
  }
  .inp-Box {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding does not affect width */
  }
 
body:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .80);
  box-shadow: inset 0 0 40px #000,
    inset 0 0 120px #111,
    inset 0 0 180px #000;
}

#msg {
  color: #ff6200;
  text-align: center;
  display: block;
  margin: 10px 0;
  margin-top: -20px;
}
.quote {
    width: 100%;
    margin: 0 auto;
    position: relative;
    max-width: 900px;
    font-size: 14px;
    }
.quote span {
    color: #ff6200;
    }

.note {
  position: relative;
  bottom: 10px;
  left: 10px;
  color: #ffffff;
      opacity: 1;
    transition: opacity 0.5s ease-in-out; /* Fading effect over 0.5 seconds */
    margin-top: 40px;
    text-align: center;
}
.main {
  width: 100%;
  height: 100vh;
  /* background: #ccc url('https://www.radiorazor.com/images/other/profile_bg.jpg'); */
  background:#fff;
  background-size: auto;
  background-position: center;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -2;
  animation: zoom 5s linear infinite;
}

#grid-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  height: 100%;
  align-items: baseline;
  justify-content: center;
  align-content: center;
}

.img-fluid {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover; /* Ensures the images fill their container */
  height: auto;
}
  /* #grid-container {
    display: flex;
    grid-gap: 20px;
    width: 100%;
    height: 100%;
    align-items: baseline;
    justify-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: space-between;
} */


@keyframes zoom {
  0% {
    transform: scale(1);
  }


  25% {
    transform: scale(1.01);
  }
  75% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}


.main-logo {
  width: 200px;
  position: absolute;
  top: 20px;
  left: 20px;
}


form {
  width: 350px;
  background: #0c0d0d;
  color: #ffffff;
  text-align: left;
  padding: 30px 45px;
  border-radius: 10px;
  box-shadow: 0 0 55px #000;

}

.logo {
  width: 100%;
  text-align: center;
}
@keyframes glitch {
    0% {
        transform: translate(0);
        clip-path: inset(0);
    }
    10% {
        transform: translate(-3px, 3px);
        clip-path: inset(10% 0 20% 0);
    }
    20% {
        transform: translate(3px, -3px);
        clip-path: inset(15% 0 10% 0);
    }
    30% {
        transform: translate(-5px, 5px);
        clip-path: inset(20% 0 25% 0);
    }
    40% {
        transform: translate(5px, -5px);
        clip-path: inset(10% 0 10% 0);
    }
    50% {
        transform: translate(0);
        clip-path: inset(0);
    }
    60% {
        transform: translate(3px, -3px);
        clip-path: inset(10% 0 20% 0);
    }
    70% {
        transform: translate(-3px, 3px);
        clip-path: inset(15% 0 15% 0);
    }
    80% {
        transform: translate(5px, -5px);
        clip-path: inset(25% 0 15% 0);
    }
    90% {
        transform: translate(-5px, 5px);
        clip-path: inset(20% 0 20% 0);
    }
    100% {
        transform: translate(0);
        clip-path: inset(0);
    }
}
.logo>img {
  width: 100px;
}
.ba-logo-wrapper {
  width: 200px;
  margin: 0 auto;
  padding-top: 10px;
}
.ba-logo-wrapper a {
    display: inline-block;
    width:100%;
    margin: 0 auto;
    transition: transform 0.3s, opacity 0.3s;
}

.ba-logo-wrapper a:hover svg {
    transform: scale(1.1); /* Slightly scale the SVG */
    transition: transform 0.3s, fill 0.3s;
}

.ba-logo-wrapper a .logo-path {
    fill: #fff; /* Change to your desired hover fill color */
  transition: transform 0.3s, fill 0.3s;
}


.ba-logo-wrapper a:hover .logo-path {
    fill: #ef3e36; /* Change to your desired hover fill color */
    animation: glitch 0.3s infinite ease-in-out;
    animation-timing-function: steps(2, end); /* Simulates glitchy stepping */
}

.sign-box {
  display: flex;
  justify-content: center;
  gap: 40px;
  text-transform: uppercase;
  margin: 30px 0;
  font-size: .95em;
}


.sign-box>p {
  padding: 5px 0;
  cursor: pointer;
  transition: .1s;
}
.sign-box>p:hover {
  border-bottom: 2.3px solid #ff6200;
}



.check {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  font-size: .95em;
  padding: 0px 20px;
  margin: 5px 0;
  accent-color: #ff6200;
}



.inp-Box {
  color: #000;
  border: none;
  outline: none;
  width: 100%;
  font-size: 1.1em;
  padding: 10px 20px;
  border-radius: 6px;
  margin-bottom: 15px;
  box-shadow: 0 0 15px #000;
  transition: .1s;
}


.inp-Box:focus {
  outline: 2px solid #ff6200;
  background: #333;
  color: #fff;
  caret-color: #ff6200;
}



.submit {
  margin-top: 15px;
  text-transform: uppercase;
  font-size: 1em;
  background: #ff6200;
  color: #ffffff;
  cursor: pointer;
  transition: .3s;
}

.submit:active {
  background: #000;
  box-shadow: 0 0 5px #000;
}


.submit:focus {
  outline: none;
  background: #000;
  color: #fff;
  caret-color: none;
}


.forgot-Psd {
  text-align: center;
  text-transform: capitalize;
  color: #444;
  margin: 15px 0;
  font-size: .95em;
  cursor: pointer;
}

.forgot-Psd:hover {
  color: #ff6200;
}
