/* =========================================
   Baby-Tchat — Forgot Password
   ========================================= */

body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: radial-gradient(circle at top, #1a0026, #000);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Container */
.container {
  background: rgba(10, 0, 20, 0.85);
  border: 1px solid rgba(150, 0, 255, 0.3);
  border-radius: 12px;
  padding: 40px;
  width: 380px;
  box-shadow:
    0 0 20px rgba(150, 0, 255, 0.2),
    inset 0 0 10px rgba(150, 0, 255, 0.1);
  text-align: center;
}

/* Title */
h1 {
  margin-bottom: 20px;
  font-size: 22px;
  color: #d6a8ff;
  text-shadow: 0 0 8px rgba(180, 0, 255, 0.6);
}

/* Input */
input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid rgba(150, 0, 255, 0.4);
  background: #0d0018;
  color: #fff;
  outline: none;
  transition: 0.2s;
}

input:focus {
  border-color: #c44dff;
  box-shadow: 0 0 10px rgba(196, 77, 255, 0.6);
}

/* Button */
button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(45deg, #6c00ff, #c44dff);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 0 10px rgba(150, 0, 255, 0.4);
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(200, 100, 255, 0.8);
}

/* Message */
#msg {
  margin-top: 15px;
  font-size: 14px;
  color: #ccc;
}

/* Link */
a {
  display: inline-block;
  margin-top: 15px;
  color: #c44dff;
  text-decoration: none;
  font-size: 13px;
}

a:hover {
  text-decoration: underline;
}