body {
  		display: flex;
  		align-items: center;
  		justify-content: center;
  		flex-direction: column;
  		position: relative;
  		font-family: 'Roboto', helvetica, arial, sans-serif;
 	 	font-size: 1.5em;
}
.login-form {
  width: fit-content;
  padding: 2em;
  position: relative;
  background: rgba(85, 0, 0, 0.15);
}
.flex-row {
    display: flex;
    margin-bottom: 1em;
  }
.lf--label {
  width: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  background: #8b0000;
  cursor: pointer;
}
.lf--input {
  flex: 1;
  padding: 1em;
  border: 0;
  color: #8b0000;
  font-size: 1rem;
}
.lf--submit {
  display: block;
  padding: 1em;
  width: 100%;
  border: 0;
  color: #fff;
  background: #8b0000;
  cursor: pointer;
  font-size: 0.75em;
  font-weight: 600;
}
