* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: #172033;
  background: #f5f7fb;
}

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

.shell {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border: 1px solid #dfe5ef;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(23, 32, 51, 0.08);
}

.wide {
  max-width: 760px;
}

h1 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.2;
}

p {
  margin: 0 0 20px;
  color: #526176;
  line-height: 1.5;
}

label {
  display: block;
  margin: 14px 0 6px;
  font-weight: 700;
  font-size: 14px;
}

input {
  width: 100%;
  height: 44px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 15px;
  background: #ffffff;
}

input:focus {
  outline: 3px solid #c9e7ff;
  border-color: #2276b7;
}

button,
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 44px;
  margin-top: 20px;
  border: 0;
  border-radius: 6px;
  background: #1769aa;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

button:hover,
.button:hover {
  background: #11588f;
}

.link-row {
  margin-top: 18px;
  text-align: center;
  font-size: 14px;
}

a {
  color: #1769aa;
  font-weight: 700;
}

.message {
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 14px;
}

.error {
  background: #fff1f2;
  color: #9f1239;
  border: 1px solid #fecdd3;
}

.success {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}

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

.logout {
  width: auto;
  min-width: 110px;
  margin-top: 0;
  padding: 0 16px;
  background: #b42318;
}

.logout:hover {
  background: #912018;
}

.details {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.detail {
  border: 1px solid #dfe5ef;
  border-radius: 6px;
  padding: 14px;
  background: #fbfcfe;
}

.detail strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  color: #526176;
}
