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

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #2980b9;
}

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

form {
  display: flex;
  flex-direction: column;
  border-radius: 3px;
  font-family: sans-serif;
  width: 350px;
}

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

label {
  color: #ffffff;
  font-size: 18px;
  padding-bottom: 0;
  text-shadow: 1px 1px #186598;
}


.bq-form-group input {
  background-color: rgba(255,255,255, 0.2);
  height: 60px;
  line-height: 60px;
  font-size: 24px;
  border: 0;
  border-radius: 2px;
  border-bottom: 1px solid #1a679c;
  margin-top: 5px;
  color: #fff;
  outline: transparent;
  font-weight: 100;
  padding: 0 10px; 
}

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

button {
  display: flex;
  margin: auto;
  width: 100%;
  padding: 15px 10px;
  color: #1a679c;
  border-radius: 2px;
  cursor: pointer;
  outline: transparent;
  background-color: #fff;
  border: 1px solid #fff;
  text-transform: uppercase;
  font-size: 20px;
  align-items: center;
  justify-content: center;
}

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

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

.bq-logo {
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 120px;
  border: 1.5px solid #1a679c;
}

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