/* ── Login page — standalone, no sidebar ── */
body.login-page {
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  background: #f5f6f7;
  color: #1f2a24;
}

/* Topbar on login uses same class as app — already styled in index.css.
   Override only what login needs differently (no sidebar means full width). */
body.login-page .topbar {
  position: relative; /* not sticky on login */
}

.login-main {
  min-height: calc(100vh - 60px - 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.login-card {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #d7ddda;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  padding: 42px;
}

.login-title {
  font-size: 28px;
  font-weight: 700;
  color: #08594A;
  margin-bottom: 10px;
  font-family: 'Trebuchet MS', Arial, sans-serif;
}

.login-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: #5b6a63;
  margin-bottom: 32px;
}

.google-btn {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  border: none;
  background: #08594A;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Roboto', Arial, sans-serif;
  cursor: pointer;
  transition: background .15s, transform .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
}
.google-btn:hover { background: #054d40; transform: translateY(-1px); }

.google-icon {
  width: 22px; height: 22px;
  background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #4285F4; font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}

.login-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  color: #8b9791;
}

/* Footer */
body.login-page .footer {
  text-align: center;
  font-size: 12px;
  color: #a6a6a6;
  padding: 1rem 1.5rem;
  border-top: 1px solid #e9ecef;
}
