/* === Premium Sci-Fi Gold Theme for Forgot Password === */
:root {
  --dark-bg: #0a0e1c;
  --neon-gold: #ffd700;
  --text-color: #f5f5f5;
  --input-bg: rgba(21, 26, 48, 0.7);
  --border-glow: rgba(255, 215, 0, 0.6);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
}

body {
  background-color: var(--dark-bg);
  color: var(--text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.login_email {
  width: 90%;
  max-width: 500px;
  background: rgba(15, 15, 25, 0.8);
  border: 2px solid var(--neon-gold);
  box-shadow: 0 0 40px var(--border-glow);
  border-radius: 15px;
  padding: 40px 25px;
  backdrop-filter: blur(8px);
  text-align: center;
  position: relative;
}

.close__btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2rem;
  color: var(--neon-gold);
  cursor: pointer;
  transition: 0.3s;
}

.close__btn:hover {
  color: #fff;
}

h1 {
  color: #00ff88;
  text-shadow: 0 0 10px #00ff8844;
  margin-bottom: 10px;
}

p {
  color: #ccc;
  margin-bottom: 25px;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

input {
  width: 100%;
  max-width: 350px;
  padding: 12px 14px;
  margin-bottom: 20px;
  background-color: var(--input-bg);
  border: 1px solid #4a4a4a;
  color: var(--text-color);
  border-radius: 6px;
  outline: none;
  font-size: 1em;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

input::placeholder {
  color: rgba(245, 245, 245, 0.6);
}

input:focus {
  border-color: var(--neon-gold);
  box-shadow: 0 0 10px var(--neon-gold);
}

button {
  width: 100%;
  max-width: 350px;
  padding: 15px;
  background-color: var(--neon-gold);
  color: #111;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px var(--border-glow);
}

button:hover {
  background-color: #ffea70;
  box-shadow: 0 0 25px var(--neon-gold);
}

a {
  color: var(--neon-gold);
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}
