html,
body.agenda-login-page {
  min-height: 100%;
}

body.agenda-login-page {
  color: #24375f;
  background:
    radial-gradient(circle at 12% 15%, rgba(219, 231, 255, 0.44) 0%, transparent 32%),
    radial-gradient(circle at 86% 16%, rgba(188, 239, 255, 0.36) 0%, transparent 34%),
    linear-gradient(135deg, #f7f9ff 0%, #f2f6ff 50%, #eef3ff 100%);
}

.agenda-login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.agenda-login-box {
  width: min(100%, 420px);
  padding: 34px;
  color: #24375f;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #d6e1f5;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(19, 45, 101, 0.18);
}

.agenda-login-brand {
  width: 88px;
  height: 88px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
}

.agenda-login-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.agenda-login-title,
.agenda-login-subtitle {
  margin: 0;
  text-align: center;
}

.agenda-login-title {
  font-size: 2rem;
  font-weight: 800;
  color: #24375f;
}

.agenda-login-subtitle {
  margin-top: 7px;
  margin-bottom: 22px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #667596;
}

.agenda-login-note {
  margin: 10px 0 22px;
  color: #667596;
  font-size: 0.95rem;
  line-height: 1.45;
  text-align: center;
}

.agenda-login-form {
  display: grid;
  gap: 14px;
}

.agenda-form-group {
  margin: 0;
}

.agenda-form-group input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: #24375f;
  background: #ffffff;
  border: 1px solid #c6d5ef;
  border-radius: 12px;
  font-size: 0.95rem;
  outline: none;
}

.agenda-form-group input:focus {
  border-color: #3156ff;
  box-shadow: 0 0 0 3px rgba(49, 86, 255, 0.16);
}

.agenda-password-wrap {
  position: relative;
}

.agenda-password-wrap input {
  padding-right: 52px;
}

.agenda-password-toggle {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 38px;
  height: 36px;
  padding: 0;
  display: grid;
  place-items: center;
  color: #667596;
  background: transparent;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 2;
}

.agenda-password-toggle:hover {
  color: #3156ff;
  background: rgba(49, 86, 255, 0.1);
}

.agenda-password-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.agenda-password-toggle[aria-pressed="true"] .agenda-password-slash {
  display: none;
}

.agenda-remember {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #667596;
  font-weight: 700;
}

.agenda-remember input {
  width: 16px;
  height: 16px;
  margin: 0;
}

.agenda-login-submit {
  min-height: 48px;
  margin-top: 2px;
  color: #ffffff;
  background: #3156ff;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(49, 86, 255, 0.22);
}

.agenda-login-submit:hover {
  background: #2447e6;
}

.agenda-login-footer {
  margin-top: 18px;
  text-align: center;
}

.agenda-login-footer a {
  color: #3156ff;
  font-weight: 700;
}

@media (max-width: 520px) {
  .agenda-login-shell {
    padding: 16px;
  }

  .agenda-login-box {
    padding: 24px 18px;
  }
}
