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

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  color: #272A2E;
}

/* Set background color based on Chakra UI color mode */
html[data-theme='dark'],
html[data-chakra-ui-color-mode='dark'],
[data-theme='dark'] {
  background-color: #121213 !important;
}

html[data-theme='dark'] body,
html[data-chakra-ui-color-mode='dark'] body,
[data-theme='dark'] body {
  background-color: #121213 !important;
  color: #F7FAFC !important;
}

html[data-theme='light'],
html[data-chakra-ui-color-mode='light'],
[data-theme='light'] {
  background-color: #FFFFFF !important;
}

html[data-theme='light'] body,
html[data-chakra-ui-color-mode='light'] body,
[data-theme='light'] body {
  background-color: #FFFFFF !important;
  color: #272A2E !important;
}
h2 {
  margin: 0;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 20px;
  padding: 20px;
}
.label {
  margin-top: 20px;
  margin-bottom: 10px;
}
