/* reset */
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
/* reset end */

body{
	font-family: 'Fira Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #474747;
}

.fira-sans-light {
  font-family: "Fira Sans", Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-style: normal;
}

a{
  text-decoration: none;
}


/* APP //////////////////////////////////////*/

.main{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.header
{
  flex: 0 0 125px;
  display: flex;
  flex-direction: column;
}
.header-top
{
  flex:0 0  85px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:0 50px;
}
.header-bottom
{
  flex:1 1 40px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  border: 0;
  background-color: #007ac3;
  color: #fff;
  justify-content: flex-end;
}
.logo
{
  background-image: url(/img/logo-wk-brand.svg);
  background-size: contain;
  display: inline-block;
  width: 227px;
  height: 37px;
  background-repeat: no-repeat;
}
.catalog-link
{
  font-size: 20px;
  line-height: 1.3;
  color: #474747;
}
.smarteca-brand
{
  font-size: 24px;
  padding: 0 48px;
  background-color: #85bc20;
  color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
}
.ico-arrow-right
{
  padding-right: 30px !important;
  background-image: url(/img/ico-arrow-gray.png);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: right center;
}
.ico-arrow-right--white
{
  background-image: url(/img/ico-arrow.png);
}

.txt-green, .success {
  color: #18ad00 !important;
}
.txt-red, .alert {
  color: #d3003b !important;
}

.form__message{
  font-size: 14px;
  margin-bottom: 30px;
}

/* body */

.body
{
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login__wrap
{
  width: 360px;
  padding-left: 70px;
} 
.login__intro
{
  margin-bottom: 50px;
}
.login__intro h2
{
  font-size: 15px;
  font-weight: 400;
}
.login__intro h1
{
  font-size: 40px;
  font-family: "Fira Sans", Arial, Helvetica, sans-serif;
  color: #007ac3;
  font-weight: 300;
  margin-bottom: 0;
}
.login__form
{

}
.login__form--inner
{
  margin-bottom: 50px;
}
.login__form--inner:after{
  content: "";
  clear: both;
  display: inline-block;
}
.form-group
{
  display: flex;
  align-items: center;
  margin-bottom: 15px; 
  position: relative;
  left: -70px;
}
.login__label
{
  flex: 0 0 70px;
  text-align: right;
  padding-right: 10px;
  font-size: 14px;
}
.login__input
{
  flex: 1 0 100%;
  padding: 0 8px !important;
  margin: 0;
  border-radius: 0;
  border: 0;
  background-color: #f2f2f2;
  line-height: 38px;
  height: 34px !important;
  box-shadow: inset 2px 3px 2px 1px rgba(0,0,0,.05);
  font-size: 14px !important;
}
.button.login__submit
{
  background-color: #85bc20;
  color: #fff;
  background-position: right 15px center;
  padding-right: 50px !important;
  float: right;
  font-weight: 400;
  font-size: 16px;
}

.form__tools
{
  display: flex;
  column-gap: 10px;
  width: 360px;
  position: relative;
  left: -70px;
}
.form__tools .button{
  flex: 1 1 auto;
}
.button
{
  border: 0;
  padding: 0 15px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f1f1f1;
  color: #757575;
  border-radius: 0;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

/* footer */

.footer
{
  flex: 0 0 auto;
  background-color: #757575;
  /*padding: 22px 332px 8px 215px;*/
  padding: 15px 50px 15px 50px;
  font-size: 14px;
  font-weight: 400;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  min-height: 56px;
  column-gap: 30px;
}


ul.footer__menu
{
  list-style: none;
  display: flex;
  column-gap: 20px;
  flex: 1 1 auto;  
}
ul.footer__menu li
{

}
ul.footer__menu li a
{
  color: #fff;
}
.footer__copyright{
  color: #fff;
  margin-bottom: 0;
}

.logo--footer
{
  background-image: url(/img/logo-wk-brand-white.svg);
  width: 163px;
  height: 26px;
  position: relative;
  top: -2px;
}

@media only screen and (max-width: 1240px) {
  .footer
    {
      flex-direction: column;
      row-gap: 10px;
      padding: 25px 0;
    }
  }

@media only screen and (max-width: 730px){
  .body{
    padding: 45px 15px;
  }
  .header-top
  {

    padding:0 15px;
  }
  .logo{
    width: 163px;
    height: 26px;
  }
  .logo--footer{
    margin-bottom: 20px;
  }
  .login__intro{
    margin-bottom: 35px;
  }
  .login__wrap
  {
    width: 330px;
    /*padding-left: 70px;*/
  } 
  .form__tools{
    width: 330px;
    flex-direction: column;
    row-gap: 10px;
  }
  .footer{
    flex-direction: column;
    align-items: flex-start;
    padding-left: 15px;
  } 
  ul.footer__menu
  {
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 20px;
  } 
  
}




@media only screen and (max-width: 1023px){
	.main--login-page .button--register, .main--login-page .catalog-link{
			display: none;
	}
}
