* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  color: #1a1a1a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
}

.pro-main {
  width: 100%;
  max-width: 600px;
}

.card {
  width: 100%;
  padding: 40px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 10px rgb(0 0 0 / 8%);
}

.card h1 {
  margin-bottom: 8px;
  color: #1a1a1a;
  font-size: 28px;
  font-weight: 600;
}

.muted {
  margin-bottom: 28px;
  color: #666;
  font-size: 14px;
  line-height: 1.55;
}

.feature-list {
  margin: 0 0 28px;
  padding: 20px;
  border-radius: 8px;
  background: #fafafa;
  list-style: none;
}

.feature-list li {
  padding: 7px 0;
  color: #333;
  font-size: 14px;
}

.feature-list li::before {
  content: "\2713";
  margin-right: 11px;
  color: #003871;
  font-weight: 700;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

input:not([type="hidden"]) {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fafafa;
  color: #1a1a1a;
  font: inherit;
  font-size: 15px;
  transition: all .2s ease;
}

input:not([type="hidden"]):focus {
  outline: none;
  border-color: #333;
  background: #fff;
}

button,
.button {
  display: block;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #1a1a1a;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s ease;
}

button:hover,
.button:hover {
  background: #333;
}

button:active,
.button:active {
  transform: scale(.98);
}

button:disabled {
  cursor: not-allowed;
  opacity: .48;
}

button.secondary,
.button.secondary {
  border: 1px solid #dedede;
  background: #fff;
  color: #333;
}

button.secondary:hover,
.button.secondary:hover {
  background: #f4f4f4;
}

form + .muted,
.card > .muted:last-child {
  margin: 24px 0 0;
  text-align: center;
}

a {
  color: #003871;
}

.legal h2 {
  margin: 26px 0 8px;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 600;
}

.legal p:not(.muted) {
  margin-bottom: 12px;
  color: #333;
  font-size: 14px;
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.actions form {
  width: 100%;
}

.inline-action {
  margin: -8px 0 24px;
}

.flash {
  margin: 20px 0;
  padding: 14px 16px;
  border-left: 3px solid #003871;
  border-radius: 8px;
  background: #fafafa;
  color: #333;
  font-size: 14px;
}

.flash.error {
  border-left-color: #ef4444;
}

.flash.success {
  border-left-color: #22c55e;
}

.status {
  margin: 22px 0 26px;
  padding: 18px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fafafa;
  color: #333;
  font-size: 15px;
}

.status .muted {
  margin: 12px 0 0;
  text-align: left;
}

.status strong.active {
  color: #15803d;
}

.status strong.inactive {
  color: #666;
}

@media (max-width: 500px) {
  .card {
    padding: 28px 22px;
  }
}
