/* /account/styles.css - dark, sleek, minimal */
:root {
  --bg: #0f1115;
  --card: #121316;
  --muted: #9aa4b2;
  --accent: #00b4d8;
  --accent-2: #7fffd4;
  --text: #e6eef6;
  --danger: #ff6b6b;
  --radius: 10px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, #07080a 0%, #0f1115 100%);
  color: var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.container {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(2,6,23,0.6);
}

h1 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  color: var(--text);
}
.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .95rem;
}

.label { display:block; font-size:.85rem; color:var(--muted); margin-bottom:6px; }
.input {
  width:100%;
  padding:12px 14px;
  background: #0b0c0f;
  border: 1px solid rgba(255,255,255,0.03);
  color: var(--text);
  border-radius: 8px;
  margin-bottom:12px;
  font-size: .95rem;
}
.btn {
  display:inline-block;
  width:100%;
  padding: 12px 14px;
  background: linear-gradient(90deg,var(--accent),var(--accent-2));
  color: #001217;
  font-weight:700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(0,180,216,0.12);
}
.btn.secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.04);
  color: var(--text);
  font-weight: 600;
}
.small {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:12px;
  color:var(--muted);
  font-size:.9rem;
}

.msg {
  margin-top:12px;
  padding:10px;
  border-radius:8px;
  font-size:.95rem;
}
.msg.success { background: rgba(34,197,94,0.08); color:#b7f2c9; border:1px solid rgba(34,197,94,0.06); }
.msg.error { background: rgba(255,107,107,0.06); color: #ffb3b3; border:1px solid rgba(255,107,107,0.04); }

.link {
  color: var(--accent-2);
  text-decoration: none;
  font-weight:600;
}
.center { text-align:center; }
.footer-note { margin-top:16px; color:var(--muted); font-size:.85rem; text-align:center; }
