* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  overflow: hidden;
  background-color: #ECEEF0;
}

.header {
  padding: 24px 0;
  border-bottom: 1px solid rgba(50, 67, 77, 0.2);
  max-width: 1160px;
}
.header h1 {
  font-weight: 400;
  color: #282D34;
  font-size: 24px;
}

.content {
  margin-top: 24px;
}
.content h2 {
  color: #282D34;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 24px;
}
.content .sign-in label {
  font-family: "NotoSans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #282D34;
  margin-bottom: 4px;
}
.content .sign-in input {
  background-color: #ECEEF0;
  border: 1px solid rgba(50, 67, 77, 0.2);
  padding: 8px;
  outline: none;
  width: 366px;
  font-size: 16px;
  color: #282D34;
  margin-bottom: 16px;
  border-radius: 2px;
}
.content .sign-in button {
  align-self: center;
  cursor: pointer;
  background-color: #38B496;
  border-radius: 16px;
  padding: 6px 40px;
  color: #fff;
  font-family: "NotoSans", sans-serif;
  font-size: 14px;
  border: none;
  outline: none;
  font-weight: 400;
  transition: 0.2s;
}
.content .sign-in button:hover {
  background-color: #45C4A6;
}
.content .sign-in .error {
  color: #D5486A;
  font-size: 14px;
  height: 0;
  margin-bottom: 0;
  overflow: hidden;
  transition: all 0.2s;
}
.content .sign-in .error.active {
  height: unset;
  margin-bottom: 16px;
}

/*# sourceMappingURL=main.css.map */
