/* src/styles.css */
body {
  margin: 0;
  max-width: 100vw;
  padding: 24px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  font: inherit;
}
button,
input,
textarea,
select {
  all: unset;
  box-sizing: border-box;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
* {
  font-family: Mulish, sans-serif;
  box-sizing: border-box;
}
.main {
  min-height: 100vh;
  width: 100vw;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  padding-top: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.input {
  width: 100%;
  height: 40px;
  border: 1px solid #c2c7d0;
  padding: 8px 12px;
  color: #505f79;
  font-size: 16px;
  outline: none;
}
.input::placeholder,
.input:disabled {
  color: #98a1b0;
  font-size: 16px;
}
.error-message {
  color: red;
  font-size: 12px;
  font-style: italic;
  margin: 0;
  transition: all 0.2s linear;
  height: 0px;
  overflow: hidden;
}
.error-message.active {
  height: 18px;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
