* {
  box-sizing: border-box;
}

:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #172033;
  background: #f4f6f9;
}

body {
  margin: 0;
  min-height: 100vh;
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: 100%;
  max-width: 520px;
  background: white;
  border: 1px solid #e5e9f0;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(30, 42, 68, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #172033;
  color: white;
  font-size: 24px;
  font-weight: 800;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 3px;
  font-size: 22px;
}

h2 {
  margin-bottom: 0;
  font-size: 20px;
}

.muted {
  color: #738096;
}

.small {
  font-size: 12px;
  margin-bottom: 4px;
}

label {
  display: block;
  margin: 18px 0 7px;
  font-weight: 650;
  font-size: 14px;
}

input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #ccd4e0;
  border-radius: 10px;
  font: inherit;
  outline: none;
}

input:focus {
  border-color: #64748b;
  box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.12);
}

button {
  width: 100%;
  margin-top: 22px;
  padding: 13px 16px;
  border: 0;
  border-radius: 10px;
  background: #172033;
  color: white;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

button:disabled {
  opacity: 0.6;
  cursor: wait;
}

.topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.link-button {
  width: auto;
  margin: 0;
  padding: 8px 10px;
  background: transparent;
  color: #59677d;
}

.period-box {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid #e5e9f0;
  border-radius: 12px;
  margin-bottom: 18px;
}

.status {
  text-align: center;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 750;
}

.status.neutral {
  background: #f1f4f8;
}

.status.warning {
  background: #fff5d9;
  color: #7a5400;
}

.status.success {
  background: #e8f7ee;
  color: #17633a;
}

.center {
  text-align: center;
  margin: 16px 0 0;
}

.details {
  margin: 18px 0 0;
  border: 1px solid #e5e9f0;
  border-radius: 12px;
  overflow: hidden;
}

.details div {
  padding: 14px 16px;
}

.details div + div {
  border-top: 1px solid #e5e9f0;
}

dt {
  font-size: 12px;
  color: #738096;
  margin-bottom: 5px;
}

dd {
  margin: 0;
  font-weight: 700;
  word-break: break-word;
}

.error {
  margin: 12px 0 0;
  color: #b42318;
  font-size: 14px;
}

.hidden {
  display: none !important;
}

@media (max-width: 560px) {
  .shell {
    padding: 12px;
    align-items: start;
  }

  .card {
    margin-top: 18px;
    padding: 22px;
    border-radius: 14px;
  }
}
