#alert-noproduction {
  display: block;
  position: absolute;
  width: 100vw;
  height: 25px;
}

body {
  background: #0173bc;
}

.form-control:focus {
  box-shadow: 0 0 0;
}

.bg_home {
  display: flex;
  height: 100vh;
}

.input-group-text {
  background-color: #00226d;
  border: 0;
}

.box_azul {
  background: #00226d;
  height: 100%;
  width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box_azul .btn-login {
  background-color: #ecaa32;
  width: 100%;
  font-size: 1.3em;
  font-weight: bold;
}

.box_azul .btn-conta {
  background-color: white;
  padding: 10px 20px;
}

.box_logo {
  width: calc(100% - 400px);
  height: auto;
}

.box_logo .logo-centro {
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
}

.box_logo .logo-centro img {
  width: 70vw;
  height: auto;
}

@media screen and (max-width: 1024px) {
  .bg_home {
    flex-flow: column-reverse;
  }

  .box_azul {
    height: 50%;
    width: 100%;
  }

  .box_logo {
    width: 70%;
    height: 50%;
    margin: 0 auto;
  }

  .box_logo .logo-centro {
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
  }

  .box_logo .logo-centro img {
    width: 60vw;
    height: auto;
  }
}

@media screen and (max-width: 550px) {
  .box_azul {
    height: 70%;
  }

  .box_logo {
    height: 30%;
  }
}