form.login_form {
  display: grid;
  grid-template-columns: 20% 80%;
  grid-gap: 20px;
  width: 45%;
  margin: auto;
}

h1 {
  color: #1c2b39;
  text-align: center;
}

.login_form label {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #1c2b39;
  text-align: right;
}

.fonttest {
  font-family: "Courier New";
}

.login_form input[type="text"],
input[type="password"] {
  border-radius: 10px;
  border: 2px solid;
  padding-left: 10px;
  padding-right: 10px;
  /*width: 70%;*/
}

.login_form input[type="submit"] {
  border-radius: 10px;
  border: 2px solid;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 10%;
}

.centred_div {
  margin: auto;
  width: 50%;
}

.centred_image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  border-left-width: 50px;
  border-left-color: #133b65;
}

.loginSubmitButton {
  transition: background-color 0.4s ease 0s;
  color: #ffffff;
  background-color: #1c2b39;
  margin: calc(-1 * 0px) 0px 0;
  position: relative;
  white-space: nowrap;
  width: 20%;
  grid-column-start: 2;
  justify-self: end;
}

.loginSubmitButtonDisabled {
  background-color: -internal-light-dark(
    rgba(239, 239, 239, 0.3),
    rgba(19, 1, 1, 0.3)
  );
  color: -internal-light-dark(rgba(16, 16, 16, 0.3), rgba(255, 255, 255, 0.3));
  border-color: -internal-light-dark(
    rgba(118, 118, 118, 0.3),
    rgba(195, 195, 195, 0.3)
  );
  font:
    normal normal normal 14px/1.4em verdana,
    geneva,
    sans-serif;
  transition: background-color 0.4s ease 0s;
  margin: calc(-1 * 0px) 0px 0;
  position: relative;
  white-space: nowrap;
  width: 20%;
  grid-column-start: 2;
  justify-self: end;
}

.loginSubmitButton:hover {
  background-color: #d3a41a;
  cursor: pointer;
}

.goToButton {
  font:
    normal normal normal 14px/1.4em verdana,
    geneva,
    sans-serif;
  transition: background-color 0.4s ease 0s;
  color: #ffffff;
  background-color: #1c2b39;
  margin: calc(-1 * 0px) 0px 0;
  position: relative;
  white-space: nowrap;
  width: 20%;
  grid-column-start: 2;
  justify-self: end;
  padding: 20px;
}

.goToButton:hover {
  background-color: #d3a41a;
  cursor: pointer;
}

/* a class for a "floating" ICF div with a key in it */
.loginwarn {
  visibility: hidden;
  min-width: 400px;
  margin-left: -200px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1; /* Goes on top of other panes */
  left: 50%;
  bottom: 30px;
}

.loginwarn.show {
  visibility: visible;
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar. 
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s;
  font-family: Verdana, "Courier New";
}

.loginSubmitButton:disabled {
  background-color: -internal-light-dark(
    rgba(239, 239, 239, 0.3),
    rgba(19, 1, 1, 0.3)
  );
  color: -internal-light-dark(rgba(16, 16, 16, 0.3), rgba(255, 255, 255, 0.3));
  border-color: -internal-light-dark(
    rgba(118, 118, 118, 0.3),
    rgba(195, 195, 195, 0.3)
  );
}

.loginSubmitButton[disabled] {
  background-color: -internal-light-dark(
    rgba(239, 239, 239, 0.3),
    rgba(19, 1, 1, 0.3)
  );
  color: -internal-light-dark(rgba(16, 16, 16, 0.3), rgba(255, 255, 255, 0.3));
  border-color: -internal-light-dark(
    rgba(118, 118, 118, 0.3),
    rgba(195, 195, 195, 0.3)
  );
}
