/*
 * Ported verbatim from the production page (previously an inline <style> block),
 * so the rendering is unchanged. Kept external so stylelint actually covers it
 * and to match the documented layout. The real design lands later.
 */

html,
body {
  margin: 0;
  height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #6ccdd9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  width: 620px;
  padding: 40px 40px 30px;
  background-color: #6ccdd9;
  box-sizing: border-box;
  text-align: center;
}

.logo {
  margin-bottom: 25px;
}

.logo span {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
}

hr {
  border: none;
  border-top: 2px solid #f29100;
  margin: 10px 0 20px;
}

.row {
  display: inline-flex;
  justify-content: center;
  gap: 80px;
  font-size: 16px;
  color: #003b63;
  line-height: 1.5;
  text-align: left;
}

.left strong {
  font-weight: 700;
}

.right {
  text-align: center;
}

.left {
  text-align: center;
}

.right a {
  color: #003b63;
  text-decoration: none;
}

.right a:hover {
  text-decoration: underline;
}

.bottom {
  margin-top: 25px;
  font-size: 14px;
  color: #003b63;
}
