* {
  box-sizing: border-box;
  font-family: sans-serif;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.bq-wrapper {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    height:  100%;
}

form {
  display: flex;
  flex-direction: column;
  border: 1px solid #d3e9ff;
  border-radius: 3px;
  box-shadow: 0 0 8px 3px #efefef;
  font-family: sans-serif;
  width: 350px;
}

.bq-form-group {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

label {
  color: #6c6c6c;
  font-size: 18px;
  padding-bottom: 10px;
}


.bq-form-group input {
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  border: 0;
  border-radius: 2px;
  border-bottom: 1px solid #86c1fc;
  margin-top: 5px;
  color: #000000;
  outline: transparent;
  font-weight: 100;
}

.bq-form-group input:focus {
    border-bottom: 1px solid #2890f7;
}

button {
  display: flex;
  margin: 5px auto;
  padding: 10px;
  bordeR: 1px solid #fff;
  background-color: #2890f7;
  color: #fff;
  font-size: 16px;
  border-radius: 2.5px;
  cursor: pointer;
  outline: transparent;
}

button:hover {
  filter:brightness(95%);
}

button:active {
  filter:brightness(90%);
}

.logo {
  display:flex;
  flex-direction:column;
  align-items:stretch;
  text-orientation: upright;
  writing-mode: tb-rl;
  z-index: 100;
  border-radius: 2.5px 0 0 2.5px;
  box-shadow: -1px 0 10px 5px #efefef;
  background-color: #2890f7;
  user-select:none;
}

.logo span {
  padding: 10px 5px;
  font-size:20px;
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px #0073e6;

}

.error {
  position: absolute;
  bottom: 0;
  background: #F44336;
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 10px;
}
