* {
	font-family: 'Roboto', sans-serif;
	font-size:17px;
}

html,
body {
    height: 100%;
}

.login {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#content {
    height: calc(100% - 40px);
}

.lForm {
    width: 324px;
}

#footer {
    height: 40px;
    text-align: center;
}

input.dijitInputInner {
    height: 48px;
    margin: 16px 0;
    border: 1px solid #b2b2b2;
    border-radius: 3px;
    font-size: 16px;
    width: 320px;
    padding: 8px 12px;
    box-sizing: border-box;
    background: none !important; 
}

/* body #content .login .lForm .item */
label {
    position: relative;
}

.dijitPlaceHolder {
    display: none;
}

.dijitTextBoxFocused {
    outline: none;
}

form label {
    color: #333;
    font-weight: 500;
}

/* submit button */

.dijitButtonContents {
    display: none;
}

.submit {
    text-align: center;
}

.submit .dijitOffScreen {
    background-color: #E0A33A;
    font-size: 17px;
    font-weight: 500;
    padding: 0 24px;
    width: auto;
    height: 40px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    border: none;
    font-family: 'Roboto', sans-serif;
}


.dijitCheckBox {

}

/* Hide the browser's default checkbox */
.dijitCheckBox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #eee;
    border-radius: 3px;
  }
  
  /* On mouse-over, add a grey background color */
  .RememberLabel:hover > .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .dijitCheckBox input:checked .checkmark,
  .dijitCheckBoxChecked + .RememberLabel .checkmark {
    background-color: #e0a33a;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
 .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .dijitCheckBoxChecked + .RememberLabel .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .dijitCheckBoxChecked + .RememberLabel .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }  

  .input {
      position: relative;
  }

  .RememberLabel {
    padding: 0 0 0 35px;
    cursor: pointer;
    color: #808080;
    font-weight: 400;
    margin-bottom: 48px;
    display: block;   
  }

  .login_message {
      color: #d72638;
      margin: 0 0 48px 0;
      text-align: center;
  }

  .login-hero {
    text-align: center;
    padding: 48px;
  }

  .copyright {
    font-size: 14px;
    color: #808080;
  }

