@import "https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap";

/* src/styles.scss */
.input-wrapper {
  margin-bottom: 24px;
}
.input {
  padding: 8px 10px;
  border: 1px solid #D0D0CE;
  outline: none;
  transition: border-color 0.2s ease-in 0s;
  display: block;
  width: 100%;
}
.input:focus,
.input:hover {
  border-color: #000;
}
.label label,
.single-input-wrapper label,
.input-wrapper label {
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin-bottom: 8px;
  color: #54565A;
}
.bnt-transparent {
  background-color: transparent;
  border: 0;
  padding: 8px 32px;
  border-radius: 4px;
  cursor: pointer;
}
.bnt-transparent.blue {
  color: #007CB0;
  border: 1px solid #007CB0;
}
.bnt-transparent.blue:hover {
  background-color: #007CB0;
  color: #fff;
}
.button {
  border-radius: 4px;
  border: none;
  padding: 8px 32px;
  cursor: pointer;
  transition: all 0.2s ease 0s;
  margin: 0.25rem 0.125rem;
}
.green,
.button__green {
  background-color: #25890d;
  color: #fff;
}
.green.disabled,
.disabled.button__green {
  background-color: #aed0a5;
}
.green.disabled:hover,
.disabled.button__green:hover {
  background-color: #aed0a5;
  cursor: default;
}
.green:hover,
.button__green:hover {
  background-color: #036a38;
}
.red {
  background-color: #D92A1C;
  color: #fff;
}
.red.disabled {
  background-color: rgba(217, 42, 28, 0.6);
}
.red.disabled:hover {
  background-color: rgba(217, 42, 28, 0.6);
  cursor: default;
}
.red:hover {
  background-color: rgba(217, 42, 28, 0.6);
}
.transparent,
.button__transparent {
  background-color: transparent;
  color: #54565a;
}
.transparent.disabled,
.disabled.button__transparent {
  color: #54565a;
}
.transparent:hover,
.button__transparent:hover {
  background-color: #d0d0ce;
}
* {
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans";
  height: 100%;
  font-size: 14px;
  font-style: normal;
}
::selection {
  color: white;
  background: #25890d;
}
h1,
h2,
h3,
h4 {
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.content {
  display: grid;
  column-gap: 32px;
  padding: 0 160px;
  grid-template-columns: 1fr 4fr 4fr;
  grid-template-areas: "menu body";
}
.content__title h2 {
  margin-bottom: 24px;
  font-weight: 300;
  font-size: 40px;
}
.content__body {
  grid-area: body;
}
.txt-red {
  color: #D92A1C;
}
.reset-btn {
  background-color: transparent;
  border: 0;
  padding: 0;
}

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