@import url("https://fonts.googleapis.com/css2?family=Commissioner:wght@100;200;300;400;500;600;700&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5,
h6, p, blockquote, pre, a, abbr, acronym, address, big,
cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small,
strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt,
dd, ol, ul, li, fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article, aside, canvas, details,
embed, figure, figcaption, footer, header, hgroup, menu, nav,
output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

img, fieldset, a img {
  border: none;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
}

input[type=submit],
button {
  cursor: pointer;
}
input[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
}

input, button {
  margin: 0;
  padding: 0;
  border: 0;
}

div, input, textarea, select, button,
h1, h2, h3, h4, h5, h6, a, span, a:focus {
  outline: none;
}

ul, ol {
  list-style-type: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: "Commissioner", sans-serif;
  font-weight: 400;
}

input {
  font-family: "Commissioner", sans-serif;
}

.containerApp {
  width: 100vw;
  min-height: 100vh;
  position: relative;
  padding: 0 300px;
}

.formContainer {
  min-height: 60vh;
  background-color: #EA3468;
  width: 650px;
  position: absolute;
  right: 300px;
  top: 0;
  padding: 180px 115px 50px;
  color: #ffffff;
}

.formTitle {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}

.formDesc {
  font-size: 18px;
  display: flex;
  margin-bottom: 42px;
}
.formDesc a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
  padding-left: 10px;
}

.inputGroup {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.inputGroup label {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 10px;
}
.inputGroup input {
  border: 1px solid #ffffff;
  background-color: transparent;
  outline: none;
  color: #ffffff;
  font-size: 18px;
  padding: 10px 15px;
}

.buttonSend {
  background-color: #ffffff;
  color: #EA3468;
  border: 1px solid #EA3468;
  padding: 10px 50px;
  font-size: 22px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 60px;
  transition: all 0.2s linear;
}
.buttonSend:hover, .buttonSend:active {
  border: 1px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
}

.line {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  font-size: 18px;
  position: relative;
  margin-bottom: 40px;
}

.text:before, .text:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background-color: #fff;
  width: 40%;
  height: 1px;
}
.text:after {
  right: 0;
}
.text:before {
  left: 0;
}

.selectLogin {
  font-size: 18px;
  margin-bottom: 10px;
}

.iconGroup {
  width: 100%;
  display: flex;
}
.iconGroup .item {
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  margin-right: 20px;
  cursor: pointer;
}

.logoTitle {
  padding-top: 35vh;
}
.logoTitle img {
  width: 490px;
  margin-bottom: 40px;
}
.logoTitle p {
  font-size: 28px;
  color: #fff;
}

.containerCabinet {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  flex-wrap: wrap;
}

.topLine {
  background-color: #202020;
  padding: 25px 50px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.profile {
  font-size: 18px;
  display: flex;
  align-items: center;
}
.profile .imgFake:nth-child(1) {
  background-color: #EA3468;
}

.imgFake {
  width: 35px;
  height: 35px;
  border: 1px solid #ffffff;
}

.name {
  padding: 0 20px;
  color: #fff;
}

.leftMenu {
  width: 250px;
  height: calc(100vh - 85px);
  background-color: #fff;
  border-right: 1px solid #D9D9D9;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}
.leftMenu .item {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 10px;
  margin-bottom: 10px;
}
.leftMenu .contActive {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 10px;
}
.leftMenu .active {
  background-color: #f7f7f7;
  border-radius: 8px;
}
.leftMenu img {
  margin: 0 10px 0 20px;
}

.lineBreak {
  width: 100%;
  height: 1px;
  background-color: #D9D9D9;
  margin: 15px 0;
}

.main {
  width: calc(100vw - 250px);
  padding: 30px 60px;
  background-color: #F7F7F7;
}

.mainWrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
}

.mainTitle {
  font-size: 22px;
  font-weight: 600;
  width: 100%;
  margin-bottom: 30px;
}

.mainItem {
  margin: 0 30px 30px 0;
  display: flex;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #D9D9D9;
  flex-direction: column;
}
.mainItem .itemLink {
  padding: 16px 20px;
  margin-bottom: 10px;
}
.mainItem a {
  width: min-content;
  display: block;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 21px;
  font-weight: 600;
  border: 1px solid #000;
  color: #000;
}
.mainItem .itemTitle {
  width: 100%;
  border-bottom: 1px solid #D9D9D9;
  display: flex;
  padding: 16px 20px;
  align-items: center;
}
.mainItem .itemTitle img {
  margin-right: 10px;
  width: 35px;
}
.mainItem .itemTitleText {
  display: flex;
  flex-direction: column;
}
.mainItem .itemTitleText p:nth-child(1) {
  font-size: 18px;
  font-weight: 600;
}
.mainItem .itemTitleText p:nth-child(2) {
  font-size: 14px;
  font-weight: 400;
}
.mainItem .itemText {
  padding: 16px 20px;
}

.disabled {
  opacity: 0.4;
  pointer-events: none;
}

#canvas {
  width: 100vw;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

/*# sourceMappingURL=/static/style.91bf29d8.css.map */
