/* copy from root.css */
:root {
  --c-green: #0aa89e;
  --c-green-2: #e7f6f5;
  --c-green-3: #009933;
  --c-green-4: #00ab9d;
  --c-green-5: #16a89e;
  --c-dark-green: #2a323a;
  --c-dark-green-2: #258076;
  --c-dark-green-3: #116258;
  --c-green-alpha: #0aa89e18;
  --c-green-alpha2: #0aa89e5a;
  --c-red: #993300;
  --c-red-2: #af0000;
  --c-red-3: #98300d;
  --c-grey-red: #fcf0f0;
  --c-grey-1: #f2f2f2;
  --c-grey-2: #e4e4e4;
  --c-grey-3: #bcbcbc;
  --c-grey-4: #aeaeae;
  --c-grey-5: #999999;
  --c-grey-6: #666666;
  --c-grey-7: #e3e3e3;
}

/* ----------------------- */
html,
body,
#page_wrapper {
  height: 100%;
}

#page_wrapper {
  background-color: #2a323acc;
  box-sizing: border-box;
  width: 100%;
  display: table;
}


#inner_wrapper {
  display: table-cell;
  vertical-align: middle;
}


#title {
  color: var(--c-green);
  font-family: Roboto, serif;
  font-weight: 500;
  font-size: 40px;
  position: absolute;
  left: 50px;
  top: 40px;
}

#footer {
  color: white;
  font-family: Roboto, serif;
  font-weight: 400;
  font-size: 13px;
  height: 38px;
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: var(--c-dark-green);

}

#footer > .left {
  float: left;
  margin-top: 10px;
  margin-left: 50px;
}

#footer > .right {
  float: right;
  margin-top: 8px;
  margin-right: 50px;
}

#footer > .right > #ils {
  width: 40px;
  height: 22px;
  background-color: white;
  margin-left: 4px;
}

body {
  background-image: url("../newUX/img/bg1920x1280.e26134b53db5.jpg");
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#login_box {
  width: 480px;
  min-height: 425px;
  background-color: white;
  margin: auto;
  padding: 46px;
  text-align: center;

  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  border-color: var(--c-grey-1);
  border-radius: 10px;
  -moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
}

.login_form {
  margin-top: 60px;
}

#login_header {
  font-family: Roboto, serif;
  font-weight: 200;
  font-style: normal;
  font-size: 30px;
  color: var(--c-grey-6);
}

div.inputbox {
  width: 384px;
  height: 50px;
  margin: auto;
  border-width: 1px;
  border-style: solid;
  border-color: var(--c-grey-2);
  border-radius: 10px;
  display: table;
}

div.inputbox.username {
  margin-bottom: 20px;
}

div.inputbox.password {
  margin-bottom: 40px;
}

div.error {
  margin-bottom: 40px;
}

.input_icon {
  font-size: 20px;
  color: var(--c-grey-3);
  width: 50px;

}

.checkbox_container {
  display: table;
}

.checkbox_container input ~ .input_icon {
  visibility: hidden;
}

.checkbox_container input:checked ~ .input_icon {
  visibility: visible;
}

input[type=checkbox] {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
}

.cell_middle {
  display: table-cell;
  vertical-align: middle;
}

.cell_middle.input {
  padding-left: 10px;
}

input#id_username,
input#id_password {
  border-style: none none solid;
  width: 284px;
  height: 36px;
  font-family: Roboto, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  text-decoration: none;
  color: var(--c-grey-4);
  text-align: left;
  border-color: transparent;
  outline-style: none;
  float: left;
}

button#login_button {
  transition: all .5s ease;
  color: white;
  margin: auto;
  width: 384px;
  height: 53px;
  background-color: var(--c-green);
  border: none;
  border-radius: 10px;
  font-family: Roboto, serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  padding-top: 0;
}

button#login_button:hover {
  background: var(--c-dark-green-2);
  color: rgba(255, 255, 255, 0.9);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

#remember {
  font-family: Roboto, serif;
  font-weight: 400;
  font-style: normal;
  color: var(--c-grey-6);
}

div.v-line26px {
  background-color: var(--c-grey-7);
  height: 26px;
  width: 1px;
}

div.dropdown-container {
  position: absolute;
  right: 150px;
  top: 50px;
}

div.focused {
  border-color: var(--c-green);
}

div.focused span {
  color: var(--c-green);
}

div.focused div.v-line26px {
  background-color: var(--c-green);
}