.loginForm { /* adapted from login.css loginForm! */
  font-family: "Open Sans", sans-serif;
  position: relative;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  color: #000000;
  margin-top: 20px;
}

.loginFooter { /* adapted from login.css loginFooter! */
  color: #000000;

  /* stick the footer to the bottom of the page: */
  position: fixed; /* z-index only works on positioned elements */
  bottom: 0;
  left: 0;
  min-width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-end; /* footer content at the bottom */
  align-content: space-around;
  padding: 20px 50px 20px 20px;

  /* ATTENTION: Don't use a negative z-index as it will prevent any input e.g. click on links! */
  z-index: 0; /* required to make footer invisible when moved over the top element! */
}

#password-reset-form {
  font-family: "Open Sans", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
}

.password-reset-panel {
  min-width: 600px;
  min-height: 350px;
  display: inline-block;
  width: 100%;
}

.password-reset-panel > .panel-north {
  display: flex;
  display: -ms-flexbox;
}

.password-reset-panel > .panel-north > .panel-north-wrap {
  width: 100%;
  margin-top: 10vh;
  z-index: 1;
  background: #ffffff;
}

.password-reset-panel > .panel-north > .panel-north-wrap table {
  min-width: 400px;
  display: inline-table;
  padding: 40px 15px 15px 15px;
}

.password-reset-panel > .panel-north > .panel-north-wrap button,
.password-reset-panel > .panel-north > .panel-north-wrap input {
  width: 300px;
}

.password-reset-panel > .panel-north > .panel-north-wrap .loginMsgPanel {
  display: inline-grid;
  float: none;
  width: 300px;
}

#password-reset-form\:captcha {
  margin-left: 3px;
  margin-top: 5px;
  display: inline-table;
}

.password-reset-title {
  display: block;
  width: 300px;
  margin: 0 0 0 35px;
  text-align: left;
  font-size: 16px;
}

.password-reset-msg {
  display: block;
  width: 300px;
  margin: 15px 0 15px 35px;
  text-align: left;
}