/* forgot.css */
body {
  margin: 0;
  padding: 0;
  background: url('2.jpg') no-repeat center center/cover;
  height: 100vh;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  position: relative;
  background: rgba(0, 0, 0, 0.336); /* More transparent */
  padding: 3rem;
  border-radius: 15px;
  color: white;
  text-align: center;
  width: 90%;
  max-width: 400px;
  z-index: 1;
  overflow: hidden;
  backdrop-filter: blur(4px); /* optional soft blur behind */
}
/* Vibrant, animated, rotating border glow */
.container::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(
    135deg,
    #ff0080,
    #ff8c00,
    #40e0d0,
    #8a2be2,
    #00ff00,
    #ff1493,
    #00bfff,
    #ff4500,
    #7fff00
  );
  background-size: 400% 400%;
  z-index: -1;
  filter: blur(20px);
  border-radius: 18px;
  animation: glowRainbow 10s ease infinite;
}

@keyframes glowRainbow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

input {
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}

button {
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background-color: #00ffee;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  color: black;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  background-color: #00d5c1;
}
