/* Cool Graphite + Indigo Accent — updated 2026-06-26 */

body {
  font-family: 'Poppins', sans-serif;
  background: #0F0F11;
  color: #FAFAFA;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.reset-container {
  background: #1C1C1F;
  padding: 30px 35px;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.7);
  border: 1px solid #27272A;
  width: 100%;
  max-width: 400px;
  text-align: center;
  animation: fadeIn 0.5s ease-in-out;
}

.reset-container h2 {
  color: #FAFAFA;
  margin-bottom: 10px;
  font-weight: 600;
}

.reset-container p {
  font-size: 14px;
  color: #A1A1AA;
  margin-bottom: 25px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input[type="text"] {
  padding: 12px;
  border: 2px solid #27272A;
  border-radius: 8px;
  font-size: 14px;
  background-color: #242428;
  color: #FAFAFA;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

input[type="text"]::placeholder {
  color: #52525B;
}

input[type="text"]:focus {
  border-color: #6366F1;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

button {
  padding: 12px;
  background: #18181B;
  color: #FAFAFA;
  border: 1px solid #27272A;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
  background: #27272A;
  transform: translateY(-2px);
}

button:active {
  transform: translateY(1px);
}

.input-error {
  font-size: 13px;
  min-height: 18px;
  display: block;
  margin-top: -8px;
  text-align: left;
  padding-left: 5px;
}

.input-error.found {
  color: #10B981;
}

.input-error.not-found {
  color: #EF4444;
}

.back-login {
  margin-top: 20px;
}

.back-login a {
  color: #6366F1;
  text-decoration: none;
  font-weight: 500;
}

.back-login a:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
