/* ===============================
   LEERSLIM AUTH PAGES (PIN / SIGNUP)
================================ */

body.auth-body {
  min-height: 100vh;
  background: linear-gradient(
    180deg,
    #f1f5fb 0%,
    #ffffff 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI";
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: 0 20px 40px rgba(15, 60, 100, 0.12);
}

.auth-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f3a5f;
  margin-bottom: 6px;
}

.auth-subtitle {
  font-size: 14px;
  color: #6b7f95;
  margin-bottom: 20px;
  line-height: 1.4;
}

.auth-error {
  background: #fee2e2;
  color: #991b1b;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 14px;
}

.auth-form input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  font-size: 14px;
  border-radius: 12px;
  border: 1px solid #dbe5f0;
  margin-bottom: 14px;
}

.auth-form input:focus {
  outline: none;
  border-color: #0F3C64;
  box-shadow: 0 0 0 3px rgba(15, 60, 100, 0.1);
}

.auth-btn {
  width: 100%;
  height: 46px;
  border-radius: 12px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  background: #0F3C64;
  color: white;
  cursor: pointer;
}

.auth-btn:hover {
  background: #145a96;
}

.auth-link {
  display: block;
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: #1f3a5f;
  text-decoration: none;
}

.auth-link:hover {
  text-decoration: underline;
}