@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #000000;
  
}
.wrapper {
  position: relative;
  width: 380px;
  height: 1100px;
  background: #000000;
  box-shadow: 0 0 6px 0px #ffffff;
  border-radius: 20px;
  padding: 40px;
  overflow: hidden;
}
/* .wrapper:hover {
  animation: animate 1s linear infinite;
}
@keyframes animate {
  100% {
    filter: hue-rotate(360deg);
  }
} */


.wrapper:hover {
  animation: animate 5s linear infinite;
}

/* .wrapper:hover button {
  animation: customAnimate 5s linear infinite;
} */









.form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: 1s ease-in-out;
}
.wrapper.active .form-wrapper.sign-in {
  transform: translateY(200px);
}
.wrapper .form-wrapper.sign-up {
  position: absolute;
  top: 0px;
  left: 0;
}
.wrapper.active .form-wrapper.sign-up {
  transform: translateY(200px);
}
#b {
  margin-top: 10px;
  font-size: 10px;
  color: #9e9e9e;
  text-align: center;
}
.input-group {
  width: 320px;
  position: relative;
  margin: 30px 0;
  border-bottom: 2px solid #fff;
}
.input-group label {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  font-size: 14px;
  color: #fff;
  pointer-events: none;
  transition: .5s;
}
.input-group input {
  width: 320px;
  height: 40px;
  font-size: 14px;
  color: #fff;
  padding: 0 5px;
  background: transparent;
  border: none;
  outline: none;
}
.input-group input:focus~label,
.input-group input:valid~label {
  top: -5px;
}
.remember {
  margin: -5px 0 100px 5px;
}
.remember label {
  color: #fff;
  font-size: 13px;
}
.remember label input {
  accent-color: #646464;
}
button {
  position: relative;
  width: 100%;
  height: 40px;
  background: linear-gradient(89.83deg, #828b9e 0.11%, #030506 58.65%);
  /* box-shadow: inset -12px 1px 0px 0px #2563eb; */
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  cursor: pointer;
  border-radius: 30px;
  border:none;
  outline: none;
  box-shadow: 3px 0px 0px 0px #828b9e;
}


button::before {
  left: -8px; /* Adjust as per your design */
  box-shadow: -4px 0 8px rgba(24, 1, 124, 0.4);
}

button::after {
  right: -8px; /* Adjust as per your design */
  box-shadow: 4px 0 8px rgba(118, 4, 4, 0.4);
}

/* On hover, slightly increase the shadow for effect */
button:hover::before,
button:hover::after {
  
}
.signUp-link {
  font-size: 14px;
  text-align: center;
  margin: 15px 0;
}
.signUp-link p {
  color: #fff;
}
.signUp-link p a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}
.signUp-link p a:hover {
  text-decoration: underline;
}
.F9{
  background-color: #c4c6c9;
  width: 320px;
 
}

@media (max-width: 391px) {
  .wrapper {

    width: 350px;
    
  }
  /* Your CSS styles for phones go here */
  .input-group {
    width: 300px;
    
  }
  
  .input-group input {
    width: 300px;
    
  }
  .F9{
  
    width: 300px;
   
  }
}

@media (max-width: 361px) {
  .wrapper {

    width: 330px;
    
  }
  /* Your CSS styles for phones go here */
  .input-group {
    width: 290px;
    
  }
  
  .input-group input {
    width: 290px;
    
  }
  .F9{
   
    width: 290px;
   
  }
}
