#page-account {
  flex-direction: column;
  gap: 16px;
}

#page-account.page {
  display: none;
}

#page-account.page.active {
  display: flex;
}

.account-hero-message {
  color: var(--slate-600);
  font-size: 13px;
}

.account-input {
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.account-input:hover {
  border-color: var(--slate-300);
}

.account-input:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.2);
  background: #ffffff;
}

.account-form-actions {
  margin-top: 14px;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}

.account-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--slate-200);
  font-size: 12px;
  color: var(--slate-600);
}

.account-session-actions {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.account-meta-row code {
  max-width: 230px;
  overflow-wrap: anywhere;
  font-size: 11px;
  color: var(--navy-700);
}

.account-password-card .card-header {
  align-items: center;
}

.account-password-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.account-checkbox-row {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--slate-600);
}

.account-password-note {
  margin-top: 10px;
  font-size: 11px;
  color: var(--slate-500);
}

#account-change-password-btn:disabled,
#account-save-profile-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

@media (max-width: 900px) {
  .account-session-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
