* {
  box-sizing: border-box;
}

.picker-body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #f4f6f9;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1f2933;
}

.picker-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border: 1px solid #d9dee5;
  border-radius: 10px;
  padding: 40px 32px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
}

.picker-heading {
  margin: 0 0 8px;
  font-size: 1.6rem;
  font-weight: 600;
}

.picker-subheading {
  margin: 0 0 24px;
  color: #6b7280;
  font-size: 0.95rem;
}

.picker-form {
  display: flex;
  flex-direction: column;
}

.picker-label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.picker-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  border: 1px solid #d9dee5;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.picker-input:focus {
  border-color: #1559b8;
  box-shadow: 0 0 0 3px rgba(21, 89, 184, 0.15);
}

.picker-help {
  margin: 8px 0 0;
  font-size: 0.8rem;
  color: #6b7280;
}

.picker-error {
  margin: 12px 0 0;
  padding: 10px 12px;
  font-size: 0.85rem;
  color: #b42318;
  background: rgba(180, 35, 24, 0.08);
  border: 1px solid rgba(180, 35, 24, 0.25);
  border-radius: 8px;
}
.picker-error[hidden] {
  display: none;
}

.picker-button {
  margin-top: 20px;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #1559b8;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.picker-button:hover {
  background: #11479a;
}
.picker-button:focus-visible {
  outline: 3px solid rgba(21, 89, 184, 0.4);
  outline-offset: 2px;
}

.picker-footer {
  margin: 24px 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
}

/*# sourceMappingURL=picker.css.map */
