
/* Login & Signup Containers */
.login-container ,.signup-container {
  width: 360px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  text-align: center;
  margin: 80px auto;
  margin-top: 200px;
}

.login-container h2,
.signup-container h2 {
  margin-bottom: 25px;
  color: #333;


}

/* Input Box */
.input-box {
  position: relative;
  margin: 18px 0;
}
.input-box input {
  width: 100%;
  padding: 12px 40px 12px 35px;
  font-size: 14px;
  border: none;
  outline: none;
  color: #333;
  border-bottom: 2px solid transparent;
  background: linear-gradient(90deg, #ff0000, #ff9900, #33cc33, #3399ff, #cc33ff, #ff0000);
  background-size: 400% 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  animation: borderMove 5s linear infinite;
}
.input-box i {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: #555;
}
.input-box .toggle {
  right: 10px;
  left: auto;
  cursor: pointer;
}
 
 

/* Keyframes */
@keyframes borderMove {
  0% { background-position: 0 100%; }
  100% { background-position: 100% 100%; }
}

/* Options */
.options {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin: 10px 0 20px;
}
.options a {
  color: #007bff;
  text-decoration: none;
}
.extra-options {
  margin-top: 20px;
}
.extra-options p {
  font-size: 14px;
  color: #444;
}

