:root {
  --md-sys-color-surface: #fdfcff;
  --md-sys-color-on-surface: #1a1c1e;
  --md-sys-color-primary: #006492;
  --md-sys-color-surface-container: #f0f4f8;
  --md-ref-typeface-brand: "Onest";
  --md-ref-typeface-plain: system-ui;
}

body {
  background-color: var(--md-sys-color-surface-container);
  color: var(--md-sys-color-on-surface);
  padding: 16px;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background: white;
  border-radius: 24px;
  padding: 32px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.header {
  text-align: center;
}

.header md-icon {
  font-size: 48px;
  color: var(--md-sys-color-primary);
  margin-bottom: 8px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.result-card {
  background-color: #eef7ff;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid #cce5ff;
}

.password-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.password-text {
  font-family: monospace;
  font-size: 1.5rem;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--md-sys-color-primary);
  word-break: break-all;
}

.hidden {
  display: none;
}

md-outlined-select {
  width: 100%;
}

md-outlined-text-field {
  width: 100%;
}
