.login-page-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.login-page-shell-single {
  max-width: 760px;
}

.login-main-card {
  background: #ffffff;
  border: 1px solid #d9e1ef;
  border-radius: 32px;
  padding: 32px 28px 26px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}

.login-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #e9eef8;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
}

.login-title {
  margin: 18px 0 0;
  color: #0f172a;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.login-subtitle {
  margin: 18px 0 0;
  color: #64748b;
  font-size: 18px;
  line-height: 1.7;
  max-width: 640px;
}

.login-form {
  margin-top: 28px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-group input {
  width: 100%;
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid #d9e1ef;
  background: #ffffff;
  padding: 0 16px;
  font-size: 16px;
  color: #0f172a;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}

.form-group input:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.password-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.password-label-row label {
  margin-bottom: 0;
}

.forgot-password-link {
  color: #2563eb;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  border-radius: 16px;
  padding: 0 18px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-full {
  width: 100%;
  margin-top: 18px;
}

.login-bottom-note {
  margin-top: 18px;
  text-align: center;
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
}

.login-bottom-note a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 700px) {
  .login-page-shell {
    padding: 20px 16px 56px;
  }

  .login-main-card {
    border-radius: 26px;
    padding: 24px 18px 20px;
  }

  .login-subtitle {
    font-size: 16px;
  }

  .form-group input {
    min-height: 52px;
  }

  .password-label-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.checkbox-row {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
}

.checkbox-row input {
  width: 16px;
  height: 16px;
  margin: 0;
}
