*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #1a1a2e;
  color: #e0e0e0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  background: #16213e;
  border: 1px solid #0f3460;
  border-radius: 8px;
  padding: 2rem;
  width: 100%;
  max-width: 400px;
}

h1 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #e94560;
}

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

label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: #a0a0b0;
}

input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  background: #0f3460;
  border: 1px solid #1a5276;
  border-radius: 4px;
  color: #e0e0e0;
  font-size: 0.95rem;
}

input:focus {
  outline: none;
  border-color: #e94560;
}

button {
  width: 100%;
  padding: 0.7rem;
  background: #e94560;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.5rem;
}

button:hover { background: #c73652; }

.msg {
  margin-top: 1rem;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
}

.msg.error { background: #4a1128; color: #f87171; }
.msg.success { background: #0d3b2e; color: #6ee7b7; }

.link {
  display: block;
  margin-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #a0a0b0;
}

.link a { color: #e94560; text-decoration: none; }
.link a:hover { text-decoration: underline; }
