html,
body {
  height: 100%;
}

body.login-body {
  margin: 0;
  min-height: 100vh;
  background: #f7f7f5;
  color: #37352f;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Inter, Helvetica, Arial, sans-serif;
}

.login-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.login-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border: 1px solid #e8e8e6;
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: none;
}

.login-brand {
  margin-bottom: 20px;
}

.login-logo {
  width: 110px;
  height: auto;
  display: inline-block;
}

.login-copy {
  margin-bottom: 24px;
}

.login-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9b9a97;
}

.login-title {
  margin: 0;
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: #2f2f2d;
}

.login-subtitle {
  font-size: 0.96rem;
  color: #787774;
}

.login-actions {
  margin-top: 8px;
}

.google-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid #dfdfdc;
  background: #ffffff;
  color: #37352f;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.15s ease, border-color 0.15s ease,
    transform 0.15s ease;
}

.google-login-btn:hover {
  background: #f3f3f1;
  border-color: #d5d5d1;
  color: #2f2f2d;
}

.google-login-btn:active {
  transform: translateY(1px);
}

.google-login-text {
  display: inline-block;
}

.login-footer {
  margin-top: 18px;
  font-size: 0.88rem;
  color: #9b9a97;
}

@media (max-width: 575.98px) {
  .login-card {
    padding: 28px 22px;
    border-radius: 16px;
  }

  .login-title {
    font-size: 1.7rem;
  }

  .login-logo {
    width: 92px;
  }
}