#sideImageBox{
	width: 360px;
	height: 504px;
	max-height: 100%;
}

@media screen and (max-width: 799px) {
	#sideImageBox{
		display: none;
	}
	#logoImageBox{
		display: block;
	}
}

.nav {
  margin-left: -1rem;
}

.nav a.nav-link {
  text-transform: uppercase;
  position: relative;
  color: #8a8a8a;
  padding-top: 0px;
}

.nav a.nav-link:hover {
  cursor: pointer;
  color: #66668a;
}

.nav a.nav-link.active {
  color: #222222;
}

.nav a.nav-link.active:hover {
  cursor: default;
}

.nav a.nav-link > .navarrow {
  display: none;
  margin: 0;
  padding: 0;
}

.nav a.nav-link.active > .navarrow {
  display: block;
}

.nav a.nav-link > .navarrow, .nav a.nav-link > .navarrow:after {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #eee;
}

.nav a.nav-link > .navarrow {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-color: #cacaca;
}

.nav a.nav-link > .navarrow::after {
  content: '';
  display: block;
  bottom: -11px;
  left: -10px;
}

.form-pane {
  display: none;
}

.form-pane.active {
  display: block;
}

.forgot-password {
  color: #a0a0a0;
}

.forgot-password a:hover {
  cursor: pointer;
  text-decoration: none;
}

#termsLink {
  color: #2196F3;
}

#termsLink:hover{
  cursor: pointer;
  text-decoration: underline;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: #a0a0a0;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #a0a0a0;
  opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #a0a0a0;
  opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #a0a0a0;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #a0a0a0;
}


/* Customize the label (the container) */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border: 1px solid #cacaca;
  border-radius: 0.25rem;
  box-sizing: content-box;
}

/* On mouse-over, add a grey background color */
.checkbox-container input ~ .checkmark:hover {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container input.invalid ~ .checkmark {
  border: 1px solid red;
  background-color: #FFDADA;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 10px;
  top: 5px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
