@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

.hide-element {
  opacity: 0;

  animation: hide-animation 0.5s ease-in-out ;
/* animation-timing-function:cubic-bezier(0.86, 0, 0.07, 1); */
}

.my-element {
  display: inline-block;
  margin: 0 0.5rem;

  animation: bounce;
  /* referring directly to the animation's @keyframe declaration */
  animation-duration: 2s;
  /* don't forget to set a duration! */
}
#signup  input[type="text"],input[type="password"] {
  /* Add your styles here */
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  color: black;
}
@keyframes hide-animation {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}


@keyframes bounce {

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

  50% {
    transform: scale(1.2);
  }
}

* {
  font-family: 'Poppins', sans-serif;
}

/* Custom styles for animation */
:root {
  --bg-color:  #2B2730;
  --btnbg-color:#0b33d1;
}

.ab {
  height: 100vh;
  width: 100%;
  padding: 0;
}

.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius: 50%; */
  /* transform: rotate(90deg); */

}

button:hover {
  background: linear-gradient(to left, #d3dae4, #12e412);
  border: 3px solid #10bd58;
  color: #072704;
  transition: 0.4s;


}

button {
  background: linear-gradient(to right, #d3dae4, #09db09);
  color: rgb(6, 22, 4);
  width: 100%;
  border: 1px solid #000000;
  height: 10vh;
  transition: 0.4s;

}






#signin:hover {
  background: linear-gradient(to left, #d3dae4, #ff660e);
  border: 1px solid #000000;
  color: #000000;
  transition: 0.4s;


}

#signin {
  background: linear-gradient(to right, #d3dae4, #ff660e);
  color: rgb(6, 22, 4);
  width: 100%;
  border: 1px solid #000000;
  color: #000000;

  height: 10vh;
  transition: 0.4s;

}














h3 {
  color:#fff;
}


input[type="text"],
input[type="password"] {
  /* Add your styles here */
  width: 100%;
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  color: black;
}

.s {
  background-color: var(--bg-color);
  color: #fff;
  
}

body,
html {
  overflow-x: hidden;
  overflow-y: hidden;

}

@media (max-width: 767px) {
  .ab {
    display: none;
  }

  .s {
    height: 100vh;
  }
}

.password-toggle-icon {
  cursor: pointer;
  pointer-events: auto;
  user-select: none;
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  right: 10px;
  z-index: 1;
}

.a {
  position: relative;

}

.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: slide 0.5s forwards;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.page-transition {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

@keyframes my-animation {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}