@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
  background: #0b0b0b;
  color: #eaeaea;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

form {
  background: #141414;
  padding: 2.5rem 3rem;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 255, 204, 0.1);
  display: flex;
  flex-direction: column;
  width: 340px;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

input {
  background: #1f1f1f;
  border: 1px solid #333;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 15px;
  transition: border 0.2s;
}

input:focus {
  border-color: #00ffc8;
  outline: none;
}

button {
  background: #00ffc8;
  border: none;
  color: #000;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

button:hover {
  background: #00d8ac;
  transform: translateY(-1px);
}

a {
  color: #00ffc8;
  text-decoration: none;
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
}

a:hover {
  text-decoration: underline;
}

h1, h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #00ffc8;
}

.message {
  text-align: center;
  margin-top: 10px;
  color: #bbb;
  font-size: 14px;
}
