:root {
  --main-bg: #eaf6fb;
  --box-color: #d8eff9;
  --primary: #3ba7df;
  --radius: 20px;
}

body {
  background: var(--main-bg);
  font-family: "Segoe UI", sans-serif;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.magic-forgot-container {
  position: relative;
  background: white;
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  max-width: 850px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  animation: fadeIn 1.2s ease;
}

.lock-section {
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.form-floating > .form-control:focus ~ label {
  margin-left: 2.25rem !important;
  padding-left: 1rem !important;
}

.form-floating .form-control {
  padding-left: 2.75rem !important;
}

.lock-box {
  width: 120px;
  height: 120px;
  background: var(--box-color);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.lock-box i {
  font-size: 3rem;
  color: var(--primary);
}

.form-section {
  flex: 1;
  min-width: 260px;
}

.form-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #333;
}

.form-subtitle {
  color: #888;
  margin-bottom: 2rem;
}

.form-floating {
  position: relative;
  margin-bottom: 1.2rem;
}

.form-floating input {
  border: none;
  border-radius: 12px;
  padding-left: 2.5rem;
  background: var(--box-color);
  box-shadow: inset 4px 4px 10px #c0d6e1, inset -4px -4px 10px #ffffff;
}

.form-floating label {
  padding-left: 2.5rem;
  color: #666;
}

.form-floating i {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
  color: var(--primary);
}

.btn-submit {
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
  padding: 0.6rem 2rem;
  border: none;
  transition: 0.3s ease;
}

.btn-submit:hover {
  background: #2897d1;
}

.floating-question {
  position: absolute;
  font-size: 3rem;
  color: #d4ecf6;
  opacity: 0.6;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  animation: float 4s ease-in-out infinite;
}

.q1 {
  top: -10px;
  left: 20px;
  animation-delay: 0s;
}

.q2 {
  top: 30px;
  right: 40px;
  animation-delay: 1s;
}

.q3 {
  bottom: 10px;
  left: 50px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=forget-password-one.css.map */