html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  display: grid;
  justify-items: center;
  align-items: center;
  background-color: #3a3a3a;
}

#main-holder {
  width: 80%;
  height: 80%;
  display: grid;
  justify-items: center;
  align-items: center;
  background-color: white;
  border-radius: 7px;
  box-shadow: 0px 0px 5px 2px black;
  padding-left: 5px;
  padding-right: 5px;
}

#logo {
    max-width: 95%;
    height: auto;
    width: auto\9; /* ie8 */
}

#login-error-msg-holder {
  width: 100%;
  height: 100%;
  display: grid;
  justify-items: center;
  align-items: center;
}

#login-error-msg {
  width: 30%;
  text-align: center;
  margin: 0;
  padding: 5px;
  font-size: 12px;
  font-weight: bold;
  color: #8a0000;
  border: 1px solid #8a0000;
  background-color: #e58f8f;
  opacity: 100;
}

#error-msg-second-line {
  display: block;
}

#login-form {
  max-width: 95%;
  align-self: flex-start;
  display: grid;
  justify-items: center;
  align-items: center;
}

.login-form-field::placeholder {
  color: #3a3a3a;
}

.login-form-field {
  border: none;
  border-bottom: 1px solid #3a3a3a;
  margin-bottom: 10px;
  border-radius: 3px;
  outline: none;
  padding: 0px 0px 5px 5px;
}

#login-form-submit {
  width: 100%;
  padding: 7px;
  border: none;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  background-color: #3a3a3a;
  cursor: pointer;
  outline: none;
}

@media (min-width: 600px) {
	ol.multi-column-list, ul.multi-column-list {
	    -webkit-column-count: 2; -webkit-column-gap:5px;
	    -moz-column-count:2; -moz-column-gap:5px;
	    -o-column-count: 2; -o-column-gap:5px;
	    column-count: 2; column-gap:5px;
	    list-style-position: inside;
	}
}

@media (min-width: 1024px) {
	ol.multi-column-list, ul.multi-column-list {
	    -webkit-column-count: 3; -webkit-column-gap:20px;
	    -moz-column-count:3; -moz-column-gap:20px;
	    -o-column-count: 3; -o-column-gap:20px;
	    column-count: 3; column-gap:20px;
	    list-style-position: inside;
	}
}

.extCol1 {
}
.extCol2 {
}
.extCol3 {
	float: right;
}

ul {
	padding-left: 15px;
}
