@font-face {
  font-family: "Suisse";
  src: url("./../fonts/SuisseRegular.woff2") format("woff2"),
  url("./../fonts/SuisseRegular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html {
  color: #fff;
  background-color: #000;
  font-family: "Suisse", sans-serif;
  font-size: 12px;
  line-height: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

input {
  width: 100%;
  border-radius: 5px;
  padding: 13px 8px;
  background-color: #292c32;
  border: 1px solid #54565b;
  color: #fff;
  font-family: "Suisse", sans-serif;
  outline: none;
}

input[disabled] {
  color: #7f7f7f;
  cursor: not-allowed;
}

label {
  color: #fff;
}

select {
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  border-radius: 5px;
  color: #fff;
  background-color: #292c32;
  border: 1px solid #54565b;
}

.button {
  width: 100%;
  border-radius: 5px;
  padding: 13px 10px;
  background-color: #fff;
  color: #000;
  border: none;
}

.flex {
  display: flex;
}

.block {
  display: block;
}

.mt-2 {
  margin-top: 10px;
}

.mb-2 {
  margin-bottom: 10px;
}

.ml-1 {
  margin-left: 5px;
}

.mr-1 {
  margin-right: 5px;
}

.error {
  padding-top: 5px;
  color: #ff2e2e;
  text-align: center;
}

.text-white {
  color: white;
}

.text-center {
  text-align: center;
}

.container {
  padding: 20px 40px;
}

button[disabled] {
  background-color: #939393;
}