body {
  overflow-x: hidden;
}
::-webkit-input-placeholder {
/* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #bfbfbf;
  opacity: 1; /* Firefox */
}
::-moz-placeholder {
/* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #bfbfbf;
  opacity: 1; /* Firefox */
}
::-ms-input-placeholder {
/* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #bfbfbf;
  opacity: 1; /* Firefox */
}
::placeholder {
/* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #bfbfbf;
  opacity: 1; /* Firefox */
}
:-ms-input-placeholder {
/* Internet Explorer 10-11 */
  color: #bfbfbf;
}
::-ms-input-placeholder {
/* Microsoft Edge */
  color: #bfbfbf;
}
.initForm {
  display: inline-block;
  position: relative;
  width: 380px;
  height: auto;
  padding: 0 30px 40px 30px;
  background-color: #f3f3f3;
  border: 1px solid #d7d7d7;
  border-radius: 2px;
  text-align: left;
  margin: auto;
}
@media (max-width: 480px) {
  .initForm {
    width: 300px;
    padding: 0 25px 40px 25px;
  }
}
@media (max-width: 450px) {
  .initForm {
    width: 280px;
  }
}
.initForm__fieldset {
  margin-bottom: 40px;
  text-align: left;
}
.initForm__legend {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 4px;
  border-bottom: 1px solid #d7d7d7;
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  opacity: 0.9;
  color: #000;
}
.initForm__submit {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 3px;
  border: none;
  outline: none;
  -webkit-appearance: none;
  background-color: #ff4447;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0 3px 1px -2px rgba(0,0,0,0.2), 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12);
          box-shadow: 0 3px 1px -2px rgba(0,0,0,0.2), 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12);
  margin-right: 10px;
}
.initForm__submit:hover {
  opacity: 0.9;
}
.initForm__submit:disabled {
  opacity: 0.7;
  cursor: default;
}
.initForm__title-cont {
  margin-bottom: 40px;
  text-align: center;
}
.initForm__title {
  display: inline-block;
  padding: 12px;
  background-color: #0a5978;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.initForm__change-psw-link {
  display: inline-block;
  padding: 7px 15px;
  color: #000;
  font-size: 13px;
  background-color: #bed8ce;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .initForm__change-psw-link {
    margin-bottom: 40px;
  }
}
.initForm__change-psw-link:hover {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  opacity: 0.8;
}
.submitBtnsBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.input-line {
  margin-bottom: 18px;
}
.input-line:last-child {
  margin-bottom: 0;
}
.input-line__label {
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #000;
}
.input-line__label_select {
  margin-bottom: 1px;
}
.input-line__description {
  display: block;
  margin-bottom: 4px;
  margin-left: 1px;
  font-size: 10px;
  font-style: italic;
  color: #c59696;
}
form input,
form textarea {
  display: block;
  width: 100%;
  padding: 8px;
  font-size: 14px;
  color: #000;
  border: none;
  outline: none;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
}
form input:focus,
form textarea:focus {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.12);
          box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.12);
}
form input:not(:focus):invalid,
form textarea:not(:focus):invalid {
  border-color: #ff4447;
}
textarea {
  font-family: 'Roboto', sans-serif;
  resize: none;
}
.input-phone {
  width: 100px;
}
.input-ident-number,
.input-egrpou-number {
  width: 120px;
}
.back-link {
  position: absolute;
  top: 10px;
  left: 15px;
  display: inline-block;
}
.back-link__icon {
  display: inline-block;
  background: url("/img/previous.svg") no-repeat;
  vertical-align: middle;
  width: 34px;
  background-size: 34px 34px;
  height: 34px;
}
.back-link:hover .back-link__icon {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.custom-select {
  position: relative;
  width: 100%;
}
.custom-select__label {
  display: block;
  position: relative;
  padding: 10px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  background: #bed8ce;
  border-bottom: 0.25em solid #adc1ba;
}
.custom-select__label:after {
  border-color: #adc1ba;
}
.custom-select__label::after {
  content: "\25BC";
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px;
  border-left: 1px solid #808080;
}
.custom-select__select {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  padding: 10px;
  height: 36px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  background: none transparent;
  border: 0 none;
  cursor: pointer;
}
.open .custom-select__label::after {
  content: "\25B2";
}
.optional {
  display: inline-block;
  margin-left: 4px;
  vertical-align: middle;
  font-size: 11px;
  font-style: italic;
  color: #696564;
}
.error-message {
  margin-bottom: 40px;
  padding: 10px 0 12px 0;
  border-top: 1px dashed #a58f8f;
  border-bottom: 1px dashed #a58f8f;
  text-align: center;
}
.error-message__icon {
  display: inline-block;
  background: url("/img/error.svg") no-repeat;
  margin-bottom: 4px;
  width: 20px;
  background-size: 20px 20px;
  height: 20px;
}
.error-message__text {
  display: block;
  font-size: 13px;
  line-height: 17px;
  font-style: italic;
  color: #f44336;
}
.error-message {
  display: none;
}
.dialog {
  display: none;
  position: fixed;
  z-index: 10;
  padding-top: 160px;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.54);
}
.dialog__content {
  position: relative;
  background-color: #fff;
  margin: auto;
  padding: 0;
  width: 75%;
  max-width: 768px;
  text-align: left;
  -webkit-animation-name: animatetop;
          animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  -webkit-box-shadow: rgba(0,0,0,0.25) 0px 14px 45px, rgba(0,0,0,0.22) 0px 10px 18px;
          box-shadow: rgba(0,0,0,0.25) 0px 14px 45px, rgba(0,0,0,0.22) 0px 10px 18px;
  border-radius: 2px;
}
.dialog__title {
  padding: 24px 24px 20px;
  color: rgba(0,0,0,0.81);
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
}
.dialog__description {
  padding: 0 24px;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.2px;
  color: rgba(0,0,0,0.6);
}
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.actions-block {
  width: 100%;
  padding: 12px;
  margin-top: 30px;
  text-align: right;
}
.actions-block__close,
.actions-block .goToOrders {
  display: inline-block;
  padding: 14px 18px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  color: #2eaae0;
  cursor: pointer;
}
.actions-block__close:hover,
.actions-block .goToOrders:hover,
.actions-block__close:focus,
.actions-block .goToOrders:focus {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  background-color: #e6e6e6;
}
.actions-block .goToOrders {
  text-decoration: none;
}
.resetChangeOrderBtn {
  display: none;
}
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
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,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
  font-size: 100%;
  vertical-align: baseline;
}
body {
  line-height: 1;
  color: #000;
  background: #fff;
}
ol,
ul {
  list-style: none;
}
table {
  border-collapse: separate;
  border-spacing: 0;
  vertical-align: middle;
}
caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}
a img {
  border: none;
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  min-width: 320px;
  font-size: 16px;
  background-color: #f9f9f9;
  width: 100%;
  font-family: 'Roboto', sans-serif;
}
main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  padding: 50px 0;
  background-color: #f9f9f9;
}
.initForm__supporting {
  margin-top: 40px;
  padding-top: 10px;
  border-top: 1px solid #d7d7d7;
}
.initForm__regLink {
  display: inline-block;
  width: 50%;
  text-align: left;
}
.initForm__forgotPswd {
  display: inline-block;
  width: 50%;
  text-align: right;
}
.initForm__link {
  color: #26a69a;
  font-size: 12px;
  text-decoration: none;
}
.initForm__link:hover {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  text-decoration: underline;
}
.initForm__submit {
  margin-top: 40px;
}
.error-message {
  margin-bottom: 0 !important;
  margin-top: 40px;
}
/*# sourceMappingURL=src/front/src/styl/login.css.map */
/*# sourceMappingURL=login.css.map*/