body {
  background-image: url(../img/loginImg.png);
  background-repeat: no-repeat;
  background-size: 190ex;
}

.container {
  margin: 0px auto 0 auto;
}
.breadcrumb-placeholder,
breadcrumb-placeholder *{
  display: none;
}
.login {
  background-color: #fff;
  border: 1px solid #D4D3E3;
  border-radius: 15px;
  padding: .75em 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 500px;
}

.login__email, .login__password {
  width: 75%;
  margin: 0 auto;
}

.login__email input, .login__password input {
  height: 45px;
  line-height: 45px;
  padding: 0 1em;
  border-radius: 15px;
  border: 1px solid #D4D3E3;
  width: 100%;
}

.login__email input::-webkit-input-placeholder, .login__password input::-webkit-input-placeholder {
  color: #A5A5B2;
}

.login__email input:-ms-input-placeholder, .login__password input:-ms-input-placeholder {
  color: #A5A5B2;
}

.login__email input::-ms-input-placeholder, .login__password input::-ms-input-placeholder {
  color: #A5A5B2;
}

.login__email input::placeholder, .login__password input::placeholder {
  color: #A5A5B2;
}

.login__forgot span {
  color: #A5A5B2;
}

.login__button a {
  color: #fff;
  background-color: #FF6D02;
  border-radius: 45px;
  padding: 1em 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  margin: 0 auto;
}

.login__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #080819;
}

.login__text span {
  margin-bottom: .5em;
}

.login__signUp {
  width: 55%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.login__signUp a {
  color: #FF6D02;
}

.login__privacy {
  width: 80%;
  margin: 0 auto;
}

.login__privacy a {
  color: #FF6D02;
  font-weight: bold;
}

.filters__checkContainer input:checked ~ .filters__checkmark {
  background-color: #FF6D02;
}

.filters__checkContainer input:checked ~ .filters__checkmark::after {
  display: block;
}

.filters__checkContainer {
  /*display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;*/
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 12px;
}

.filters__checkContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.filters__checkmark {
  height: 20px;
  width: 20px !important;
  background-color: #fff;
  border: 1px solid #D4D3E3;
  border-radius: 50%;
  display: block;
  float: right;
  margin-top: 5px;
  margin-left: 5px;
}


.filters__checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
/*# sourceMappingURL=login.css.map */
@media screen and (max-width: 767px){
  .login{
    margin-top: 35px;
  }
}