* {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html, body {
  height: 8%;
}

body {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  position: relative;
  background: linear-gradient(135deg, rgb(40 41 59), rgb(8 20 65));
  font-family: Open Sans, Arial, sans-serif;
  font-size: 1.3em;
}

.bodyx {
  display: flex;
  background: linear-gradient(135deg, rgb(40 41 59), rgb(8 20 65));
  font-family: Open Sans, Arial, sans-serif;
  font-size: 1.3em;
  flex-direction: column;
  align-content: center;
  justify-content: space-around;
  align-items: center;
}

body:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  /*height: 0%;*/
  width: 50%;

}
.form {
  display: flex;
  flex-direction: column;
  margin-top: 15vh;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}

.login-form {
  display: flex;
  flex-direction: column;
  width: 50vw;
  max-width: 15em;
  padding: 2em;
  position: relative;
  align-items: center;
  border-radius: 2px;
  border: 1px solid #064c9c;
  box-shadow: 0px 7px 16px -3px rgba(0, 0, 0, 0.5);
  background: #bc3220;
  background: -webkit-gradient(left top, right top, color-stop(0%, #163f89), color-stop(29%, #db4a37), color-stop(50%, #3786db), color-stop(71%, #3786db), color-stop(100%, #163f89));
  background: -webkit-linear-gradient(left, #163f89 0%, #3786db 29%, #3786db 50%, #3786db 71%, #163f89 100%);
  background: linear-gradient(to right, #17356d 0%, #215492 29%, #3274bb 50%, #215492 71%, #17356d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bc3220', endColorstr='#bc3220', GradientType=1 );
}
.login-form:before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  height: 2px;
  width: 100%;
}
@media (max-width: 700px) {
  .login-form {
    width: 50vw;
    max-width: 15em;
  }
}

.flex-row {
  margin-bottom: 1em;
  align-content: center;
}

.logo {
  margin-bottom: 50px;
  color: #fff;
  width: 100%;
}

.logo h1 {
  text-align: center;
  font-family: 'Roboto', 'Arial Narrow', Arial, sans-serif;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 8px;
  color: #15c3ed;
  text-shadow: 2px 2px 3px #000000b5;

}

.label {
  text-align: center;
  font-family: 'Roboto', 'Arial Narrow', Arial, sans-serif;
  font-size: 14px;
  color: #15ed56;
}

.lf--input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px;
  border: 1px inset #63a1f3;
  width: 100%;
  align-content: center;
  text-align: center;
  box-sizing: border-box;
  color: #ffffff;
  font-size: 1.2rem;
  font-family: 'Roboto', 'Arial Narrow', Arial, sans-serif;
  
  border-radius: 20px;
  background: #2b65ba;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #192d54), color-stop(100%, #277cae));
  background: -webkit-linear-gradient(top, #192d54 0%, #277cae 100%);
  background: linear-gradient(to bottom, #192d54 0%, #277cae 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bc3220', endColorstr='#fa5846', GradientType=0 );
}

.lf--input::placeholder {
  color: #22d1fab0;
  font-size: 1.2rem;
  font-family: 'Roboto', 'Arial Narrow', Arial, sans-serif;
}

.lf--input:focus {
  outline: none;
}

.lf--input:focus::placeholder{
  color: #3a3a3ab0;
}

.lf--submit {
  display: flex;
  padding: 1em;
  width: 120px;
  align-self: center;
  box-shadow: 0px 7px 16px -3px rgb(4, 29, 61);
  background: #ffbf00;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #1f89cb), color-stop(100%, #1f5495));
  background: -webkit-linear-gradient(top, #1f89cb 0%, #1f5495 100%);
  background: linear-gradient(to bottom, #1f89cb 0%, #1f5495 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffbf00', endColorstr='#fa9f17', GradientType=0 );
  border: 1px outset #63bef3;
  border-radius: 30px;
  color: #fff;
  margin-top: 40px;
  cursor: pointer;
  font-size: 0.85em;
  font-weight: 500;
  text-shadow: 1px 1px #272727;
}
.lf--submit:focus {
  outline: none;
  -webkit-transition: -webkit-transform .15s ease;
  transition: -webkit-transform .15s ease;
  transition: transform .08s ease;
  transition: transform .08s ease, -webkit-transform .08s ease;
  -webkit-transform: scale(0.97);
          transform: scale(0.97);
}

.lf--forgot {
  margin-top: 2em;
  color: #ffffff;
  font-size: .5em;
  text-align: center;
  float: left;
}

::-webkit-input-placeholder {
  color: #c9c2c2;
}

::-moz-placeholder {
  color: #ffffff;
}

:-ms-input-placeholder {
  color: #ffffff;
}

::placeholder {
  color: #ffffff;
}
