html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  overflow: hidden;
}
body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.containerDark{
  background-color: #000
}
.container-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  column-gap: 24px;
}
.container-bottom-Dark{
  background-color: #000
}
.column {
  display: flex;
  flex-direction: column;
  padding-right: 1px;
}
.input {
  height: 40px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14;
}
.inputDark{
  background-color: #000
}
.label {
  margin-bottom: 2px;
  line-height: 22px;
  font-weight: 500;
  font-size: 14px;
  color: #282828;
  text-align: left;
  margin-left: 6;
}
.labelDark{
  color: #fff
}
.column.small .label {
  text-align: left;
}
.column.small {
  width: calc(50% - 24px);
}
