/* public_html/assets/style.css */
:root { font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
body { margin: 0; background: #f6f7fb; color: #111; }
.container { max-width: 920px; margin: 40px auto; padding: 0 16px; }
.card { background: #fff; border: 1px solid #e6e8f0; border-radius: 12px; padding: 18px; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.row { display: flex; gap: 16px; flex-wrap: wrap; }
.col { flex: 1 1 320px; }
h1 { margin: 0 0 12px; font-size: 22px; }
p { margin: 10px 0; line-height: 1.4; }
label { display: block; margin: 10px 0 6px; font-weight: 600; }
input[type="email"], input[type="password"] {
  width: 100%; padding: 10px 12px; border: 1px solid #cfd4e6; border-radius: 10px; font-size: 14px;
}
button {
  padding: 10px 14px; border: 0; border-radius: 10px; background: #2f5cff; color: #fff; font-weight: 700;
  cursor: pointer;
}
button:hover { filter: brightness(0.96); }
.small { font-size: 13px; color: #444; }
.alert { padding: 10px 12px; border-radius: 10px; margin: 12px 0; }
.alert.error { background: #ffe6e6; border: 1px solid #ffb3b3; }
.alert.ok { background: #e9ffea; border: 1px solid #b8f2bf; }
a { color: #2f5cff; text-decoration: none; }
a:hover { text-decoration: underline; }
.nav { display:flex; justify-content: space-between; align-items:center; margin-bottom: 14px; }
.nav a { font-weight: 700; }
