/* Login overlay — herda paleta do portal */
#loginOverlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #F4EFE6 0%, #E8DFC9 100%);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.login-card {
  background: #FBF8F2;
  border: 1px solid #D8D0C0;
  border-radius: 12px;
  padding: 40px 44px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 60px -12px rgba(9, 54, 84, 0.18),
              0 4px 12px rgba(9, 54, 84, 0.06);
}

.login-brand {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #058D43;
  font-weight: 700;
  margin-bottom: 6px;
}

.login-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  font-style: italic;
  color: #093654;
  line-height: 1.1;
  margin-bottom: 14px;
}

.login-lede {
  color: #3B5A74;
  font-size: 13.5px;
  margin-bottom: 28px;
  font-family: 'Manrope', sans-serif;
  line-height: 1.5;
}

.login-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}

.login-field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8A95A4;
  font-weight: 700;
}

.login-field input {
  padding: 10px 13px;
  border: 1px solid #D8D0C0;
  background: #F4EFE6;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: #093654;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}

.login-field input:focus {
  border-color: #058D43;
  background: #FBF8F2;
}

.login-error {
  background: rgba(168, 68, 44, 0.1);
  border-left: 3px solid #A8442C;
  color: #A8442C;
  padding: 8px 12px;
  font-size: 13px;
  margin-bottom: 14px;
  border-radius: 3px;
  font-weight: 600;
}

.login-submit {
  width: 100%;
  background: #093654;
  color: #FBF8F2;
  border: 1px solid #093654;
  padding: 11px 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.15s;
  margin-top: 8px;
}

.login-submit:hover:not(:disabled) {
  background: #058D43;
  border-color: #058D43;
}

.login-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}
