nav h1 {
  color: rgb(7, 159, 112);
  font-weight: bold;
  font-size: 1.5rem;
}

nav.login {
  display: flex;
  align-items: center;
  padding-left: 64px;
  padding-right: 64px;
  border-bottom: 1px #a7a8aa solid;
}

.control-label {
  color: rgb(7, 159, 112) !important;
}

.form-label-group input:-moz-placeholder-shown ~ label {
  color: rgb(7, 159, 112);
}

.form-label-group input:placeholder-shown ~ label,
.form-label-group > label {
  color: rgb(7, 159, 112);
}

a {
  color: #aaa;
}

a:hover {
  color: #fff;
}

img.bg {
  /* Set rules to fill background */
  min-height: 100%;
  min-width: 1024px;
  /* Set up proportionate scaling */
  width: 100%;
  height: auto;
  /* Set up positioning */
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 1024px) {
  img.bg {
    /* Specific to this particular image */
    left: 50%;
    margin-left: -512px;
    /* 50% */
  }
}

.parent {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login {
  max-width: 400px;
  max-height: 375;
  border: white solid 1px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px;
}

.login h1,
.login h2 {
  text-align: center;
  font-weight: bold !important;
  font-size: 3rem;
  color: #fff;
  margin-top: 0;
  font-weight: 400;
}

.login h2 {
  font-size: 2rem;
}

.mdc-text-field:not(.mdc-text-field--disabled) {
  background-color: whitesmoke;
  width: 100%;
  border-radius: 5px;
}

.mdc-text-field__input,
.mdc-select__native-control {
  border: 1px solid grey;
  border-radius: 5px;
}

