/* ============================= */
/* RESET                         */
/* ============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============================= */
/* BASIS                         */
/* ============================= */
html, body {
  height: 100%;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f6f7f9;
  color: #111827;
  -webkit-font-smoothing: antialiased;
}

/* ============================= */
/* PAGE SYSTEM                   */
/* ============================= */
.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 24px;
}

.page-content {
  max-width: 760px;
  text-align: center;
}

/* ============================= */
/* BRAND                         */
/* ============================= */
.brand {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 32px;
}

/* ============================= */
/* TYPO – LANDING                */
/* ============================= */
.page-landing h1 {
  font-size: 52px;
  font-weight: 300;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

.page-landing p {
  font-size: 18px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 40px;
}

/* ============================= */
/* BUTTONS                       */
/* ============================= */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: #111827;
  color: #ffffff;
}

.btn-primary:hover {
  background: #000000;
}

/* ============================= */
/* SYSTEM META                   */
/* ============================= */
.system-meta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 16px;
  list-style: none;
}

.system-meta li {
  font-size: 12px;
  color: #9ca3af;
  padding: 6px 14px;
  background: #f3f4f6;
  border-radius: 999px;
}

/* ============================= */
/* LOGIN LINK (GLOBAL)           */
/* ============================= */
.login-link {
  position: fixed;
  bottom: 28px;
  left: 28px;
  font-size: 13px;
  color: #9ca3af;
  text-decoration: none;
}

.login-link:hover {
  color: #111827;
}

/* ============================= */
/* LOGIN BACKGROUND              */
/* ============================= */
.login-bg {
  background-image: url("/assets/images/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.login-bg::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.45);
  z-index: -1;
}

/* ============================= */
/* LOGIN CONTAINER               */
/* ============================= */
.container {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 18px;
  padding: 48px 42px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
}

.container h1 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 10px;
}

.container p {
  font-size: 15px;
  color: #6b7280;
}

/* ============================= */
/* FORMS                         */
/* ============================= */
form {
  margin-top: 32px;
}

input {
  width: 100%;
  padding: 16px 18px;
  margin-bottom: 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
}

input::placeholder {
  color: #9ca3af;
}

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

button {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  border-radius: 12px;
  border: none;
  font-size: 15px;
  font-weight: 500;
  background: #111827;
  color: white;
  cursor: pointer;
}

button:hover {
  background: #000000;
}
