body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", sans-serif;
  background: radial-gradient(circle at 30% 30%, #2b1055, #000);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #fff;
}

.form-floating > .form-control:focus ~ label {
  margin-left: 2.25rem;
  padding-left: 1rem !important;
  position: absolute;
  top: -10px;
  left: 0px;
}

.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  overflow: hidden;
  z-index: 0;
}
.stars::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: repeating-radial-gradient(circle, rgba(255, 255, 255, 0.3) 0 1px, transparent 1px 20px);
  animation: moveStars 60s linear infinite;
}

@keyframes moveStars {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
.glass-form {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 420px;
}
.glass-form h2 {
  font-weight: 600;
}
.glass-form p {
  font-size: 0.95rem;
  color: #ccc;
}

.form-floating {
  position: relative;
  margin-bottom: 1.8rem;
}
.form-floating .form-control {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 2.75rem;
}
.form-floating .form-control:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: #00c9ff;
  color: #fff;
}
.form-floating label {
  color: #ccc;
  padding-left: 2.25rem;
}
.form-floating .icon-inside {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: #00c9ff;
  z-index: 5;
  pointer-events: none;
}

.btn-reset {
  background: linear-gradient(135deg, #00c9ff, #92fe9d);
  border: none;
  color: #000;
  font-weight: 600;
  padding: 0.75rem;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(0, 201, 255, 0.5647058824);
  transition: 0.3s ease;
}
.btn-reset:hover {
  box-shadow: 0 0 20px rgba(0, 201, 255, 0.8666666667);
}

.icon-header {
  font-size: 3rem;
  color: #92fe9d;
  margin-bottom: 1rem;
  animation: floatLock 2s ease-in-out infinite;
}

@keyframes floatLock {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@media (max-width: 500px) {
  .glass-form {
    padding: 2rem 1.2rem;
  }
}/*# sourceMappingURL=forget-password-three.css.map */