/* Limit form width and center it */
.login_wrapper {
  max-width: 375px;
  width: 100%;
  padding: 10px;
}

/* Existing styles */
.login_content {
  position: relative;
  text-align: center;
}

.login_content h1 {
  position: relative;
  display: inline-block;
  padding: 0 10px;
  font-size: 28px;
  color: #555;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.login_content label {
  font-size: 16px;
  padding-left: 18px;
}

.login_content h1:before,
.login_content h1:after {
  content: "";
  height: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20%;
  background: #7e7e7e;
}

.login_content h1:after {
  background: linear-gradient(to right, #7e7e7e 0%, white 100%);
  right: -25%;
}

.login_content h1:before {
  background: linear-gradient(to left, #7e7e7e 0%, white 100%);
  left: -25%;
}

.login_content form input.form-control:focus {
  box-shadow: 0 0 2px #7e7e7e inset;
  background-color: #fff;
  border: 1px solid #7e7e7e;
  outline: none;
}
.login_content label {
  text-align: left; /* force left alignment */
  display: block; /* make it take full width */
  font-size: 16px;
  padding-left: 0; /* remove center padding */
  margin-bottom: 5px; /* add space under label */
}
.login_content img {
  width: 100%;
  height: auto; /* maintain aspect ratio */
  margin-top: 10px; /* space above image */
  margin-bottom: 10px;
  /* box-shadow: 0 0.125rem 0.25rem rgba(30, 30, 29, 0.75); */
}
