body, html {
  height: 100%;
  margin: 0;
  font-family: "Arial";
  font-weight: lighter;
  color: #626262;
  background-color: #54c1fb;
}
.container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loginBox {
  width: 330px;
  background-color: white;
  box-shadow: 0px 0px 43px -2px rgba(135,130,135,1);
  border-radius: 8px;
  padding: 15px;
}
.userImage {
  border-radius: 50%;
  overflow: hidden;
  width: 120px;
  height: 120px;
  margin: 10px auto 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
img {
  width: 70%;
}
.input-wrapper {
  position: relative;
}
.error-email, .error-pass {
  position: absolute;
  top: 5px;
  padding: 5px 10px;
  right: 0;
  color: white;
  background-color: #e87266;
  border-radius: 10px;
}
.triangle {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #e87266;
  position: absolute;
  right: 18px;
  bottom: -8px;
}
input {
  display: block;
  width: 300px;
  padding: 15px 10px;
  border-radius: 8px;
  border: 1px solid #ececec;
  margin: 10px 0;
}
input[type="button"] {
  width: 100%;
  margin-top: 18px;
  background-color: #54c1fb;
  color: white;
  font-weight: lighter;
}
.warning {
  border-color: red;
}
.overlay {
  background: rgba(14, 14, 14, 0.57);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
}
.text-center {
  text-align: center;
}
.register-href {
  color: #4c9cff;
}