:root {
  --dark-navy: #17242f;
  --navy: #202f3e;
  --active: #ff474c;
  --header-light: #c3e3ff;
  --header-dark: #627882;
  --amax-blue: #004c97;
  --background-light: #f4f9ff;
  --border-color: #32465a;

  --shadow-1: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-2: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
input:-internal-autofill-selected {
  border: 1px solid lightsteelblue;
  background-color: white !important;
  padding: 5px;
  -webkit-box-shadow: 0 0 0 30px white inset !important
}

* {
  box-sizing: border-box;
}

#root {
  align-items: center;
  background: var(--amax-blue);
  color: white;
  display: flex;
  flex-direction: column;
  font-family: Verdana;
  /*font-weight: 100;*/
  font-style: normal;
  font-size: 12px;
  height: 100%;
  justify-content: center;
  margin: 0px;
  overflow: hidden;
  position: absolute;
  width: 100%;
}

#app-content {
  display: flex;
  height: 100%;
}

a {
  color: white;
  font-weight: 800;
  text-decoration: none;
  margin: 16px;
}

button, input[type="submit"] {
  background: #F1793C;
  color: white;
  border: none;
  padding: 8px;
  cursor: pointer;
  margin-top: auto;
}

h3 {
  margin: 0;
}

hr {
  width: 280px;
  margin: 0 1em 1em 1em;
}

.content-right {
  display: flex;
  flex-direction: column;
  background-color: var(--background-light);
  width: 100%;
  padding: 16px;
}

/* Form */
form {
  color: black;
  background: white;
  box-shadow: var(--shadow-2);
  display: flex;
  flex-direction: column;
  width: 460px;
  height: 300px;
  padding: 24px;
}

button, input, label, .remember {
  margin-bottom: 6px;
}

button:hover {
  box-shadow: var(--shadow-2);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

label {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color:#0069AA;
  font-family: Verdana;
}

.title {
  font-size: 2em;  
  margin-bottom: 12px;
  text-align: center;
}

.login-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.home-logo {
  border-right: 1px solid white;
  padding-right: 12px;
  margin-right: 12px;
  height: 30px;
}

.secure-logo {
  margin: 2em;
}

footer {
  background-color: #3d3d3d;
  bottom: 0;
  left: 0;
  font-size: 0.9em;
  height: 5em;
  padding: 2em;
  position: absolute;
  text-align: center;
  width: 100%;
}

span {
  text-align: center;
}