.wrapper {
  box-sizing: border-box;
  max-width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: url(../big_bro_images/bg_pic.png) repeat #db696d; 
  background-size: 20px;
}
.logo, .logo02, .cat {
  width: 100%;
}
.logo02 {
  display: none;
}
.login {
  width: 90%;
  /*height: 500px;*/
  margin-top: -70px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .wrapper {
    box-sizing: border-box;
    max-width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url(../big_bro_images/bg_pic.png) repeat #db696d; 
    background-size: 20px;
  }
  .logo {
    display: none;
  }
  .logo02 {
    width: 85%;
    display: block;
    margin: 0 auto;
  }
  .cat {
    display: none;
  } 
}
@media (min-width: 992px) {
  .login {
    margin-top: 0px
  }
}