body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at center, #1c1c1c, #0a0a0a);
  font-family: "Segoe UI", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  color: #eee;
}

.vault-container {
  background: #111;
  border: 2px solid #444;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
  padding: 2rem;
  width: 90%;
  max-width: 600px;
  position: relative;
  overflow: hidden;
}

.vault-door {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  width: 160px;
  height: 160px;
  background: linear-gradient(145deg, #222, #000);
  border-radius: 50%;
  border: 6px solid #888;
  box-shadow: inset 0 0 15px #333, 0 0 20px #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transition: transform 1s ease-in-out;
}

.vault-door.spin {
  transform: translateY(-50%) rotate(720deg);
}

.vault-lock {
  width: 30px;
  height: 30px;
  border: 3px solid #999;
  border-radius: 50%;
  background: #444;
  box-shadow: inset 0 0 5px #222;
}

.form-content {
  position: relative;
  z-index: 2;
}

.form-content h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #eee;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  color: #aaa;
}

.form-group input {
  width: 100%;
  padding: 0.7rem;
  border-radius: 8px;
  border: none;
  background: #222;
  color: #fff;
  box-shadow: inset 0 0 10px #000;
  font-size: 1rem;
}

.btn-submit {
  width: 100%;
  padding: 0.7rem;
  background: #00ffcc;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  color: #000;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: #00e6b8;
}

.success-message {
  margin-top: 1rem;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  color: #00ff99;
  display: none;
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}/*# sourceMappingURL=forget-password-four.css.map */