:root {
  --brand-blue: #003768;
  --text-main: #333333;
  --page-bg: #ffffff;
  --box-bg: #fcfcfc;
}

* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 15px;
  line-height: 1.5;
  color: var(--text-main);
  background: var(--page-bg);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.main-wrapper {
  max-width: 1000px;
  margin: 20px auto;
}

.flex-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.title {
  color: var(--brand-blue);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 6px;
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box {
  border: 3px solid var(--brand-blue);
  background-color: var(--box-bg);
  padding: 20px;
  flex-grow: 1;
}

.box p {
  margin: 0 0 12px;
}

.box p:last-child {
  margin-bottom: 0;
}

ul {
  padding-left: 20px;
  margin: 0;
}

li {
  margin-bottom: 10px;
}

li:last-child {
  margin-bottom: 0;
}

.actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}

.continue-btn {
  border: 0;
  border-radius: 4px;
  padding: 10px 22px;
  color: #fff;
  background: #2f67d6;
  font-size: 1rem;
  font-weight: 700;
}

.continue-btn:enabled {
  cursor: pointer;
}

.continue-btn:hover:enabled {
  background: #2456bc;
}

.continue-btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}



@media (min-width: 600px) {
  .flex-container {
    flex-direction: row;
    align-items: stretch;
  }
}

.hidden-timer {
  display: none;
}
