* {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  margin-top: 8px;
  margin-bottom: 8px;
}

p {
  line-height: 1.3;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  height: 100%;
  margin: 0;
  padding: 0;
  color: white;
  background-color: #182D4C;
  overflow-y: scroll;
  /* Show vertical scrollbar */
}

.body-wrapper {
  height: fit-content;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  width: 100%;
  max-width: clamp(360px, calc(96vw - 48px), 1080px);
  margin: auto;
  padding: 16px;
  border-radius: 8px;
}

.todo-js-module,
._layout_8ejy9_41 {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  gap: 24px;
}

._layout_8ejy9_41>* {
  width: 100%;
}

form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}

input:not(input[type='checkbox']) {
  width: -webkit-fill-available;
  padding: 8px;
  border-radius: 4px;
}

label>div {
  width: 100%;
}

label {
  min-height: 24px;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

input[type='submit'],
input[type='reset'],
button {
  padding: 12px 32px;
  width: fit-content;
  cursor: pointer;
  font-size: 16px;
  outline: none;
  border: none;
  border-radius: 4px;
  letter-spacing: 0.2px;
  font-weight: 500;
  width: 160px;
}

input[type='submit'] {
  background-color: slateblue;
  color: white;
}

input[type='reset'] {
  background-color: #243d61;
  color: white;
}

._footer_8ejy9_107 {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 32px;
}

._header_8ejy9_115 {
  font-weight: bold;
  font-size: 18px;
  margin: 8px 0;
}

._header_8ejy9_115 h1 {
  font-size: 32px;
  margin-top: 0;
}

._nav_8ejy9_126 {
  display: flex;
  gap: 16px;
}

._nav_8ejy9_126 a {
  color: rgb(22, 22, 36);
  flex: 0;
  padding: 12px 0;
  line-height: 24px;
  border: none;
  text-decoration: none;
}

.display-flex {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.flex-column {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.quote-grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 16px;
}

textarea {
  width: 100%;
  height: 96px;
  border: 1px solid rgb(188, 202, 215);
  border-radius: 4px;
  padding: 8px;
}