﻿body {
}
/* Styles go here */


html,
body {
  padding: 0;
  margin: 0;
}
#images {
  width: 100%;
  height: 100%;
}

.idorange{
  color:#f95823;
}

img {
  height: 100%;
}
img.bg {
  /* Set rules to fill background */
  min-height: 100%;
  min-width: 1024px;
  /* Set up proportionate scaling */
  width: 100%;
  height: auto;
  /* Set up positioning */
  position: fixed;
  top: 0;
  left: 0;
}
.login {
  width: 400px;
  min-height: 450px;
  background-color: #fff;
  box-shadow: 0px 0 10px 0 rgba(0, 0, 0, 0.5);
}


.logo {
  width: 250px;
  height: 55px;
  background-image: url(images/logo_sml.png);
  background-size: 250px, 55px;
  background-repeat: no-repeat;
  margin:0 auto;
  margin-top:50px;
}

.logo h4{
  font-family: sans-serif;
  width: 100%;
  text-align:center;
  font-size:40px;
  font-weight: lighter;
  margin-bottom:10px;
}

.mojo{
  text-align:center;
  font-family: sans-serif;
  color:grey;
}

.centered {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -225px;
  margin-left: -200px;
}

.input{
  
  width:340px;
  margin:0 auto;
  margin-top:50px;
}

.signin {
  cursor: pointer;
  width: 100%;
  position: absolute;
  bottom: 0;
  background-color: #f95823;
  height: 60px;
}

.orange-flat-button {
  font-family: sans-serif;
  position: relative;
  vertical-align: top;
  font-weight: lighter;
  width: 100%;
  height: 60px;
  padding: 0;
  font-size: 22px;
  color: white;
  text-align: center;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.125);
  background: #f95823;
  border: 0;
  cursor: pointer;
  -webkit-appearance: none; /*Safari/Chrome*/
    -moz-appearance: none; /*Firefox*/
    -ms-appearance: none; /*IE*/
    -o-appearance: none; /*Opera*/
    appearance: none;

    -webkit-border-radius: 0; 
}

.orange-flat-button:active {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.rememberme{
  float: left;
}

.remember{
  font-family: sans-serif;
  color:grey;
  font-size:12px;
  
}

.forgot{
  float:right;
  padding-top: 2px;
}

.forgot a{
  font-family: sans-serif;
  color:#f95823;
  font-size:12px;
}

.id-input-text {
  position: relative;
  margin-bottom: 20px;
  /* Label */
  /* active */
  /* Underline */
  /* active */
  /* Highlight */
  /* active */
  /* Animations */
}
.id-input-text label {
  color: #999;
  font-size: 14px;
  font-weight: normal;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: all 0.2s ease;
}
.id-input-text input {
  font-size: 14px;
  padding: 10px 10px 10px 0;
  -webkit-appearance: none;
  display: block;
  color: #999999;
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid #cdcdcd;
  transition: all 0.5s ease;
}
.id-input-text input:focus {
  outline: none;
  border-bottom: 2px solid transparent;
}
.id-input-text input:focus ~ label, .id-input-text input.used ~ label {
  top: -20px;
  transform: scale(0.75);
  left: -2px;
  /* font-size: 14px; */
  color: #ff7200;
}
.id-input-text .bar {
  position: relative;
  display: block;
  width: 100%;
}
.id-input-text .bar:before, .id-input-text .bar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #ff7200;
  transition: all 0.2s ease;
}
.id-input-text .bar:before {
  left: 50%;
}
.id-input-text .bar:after {
  right: 50%;
}
.id-input-text input:focus ~ .bar:before, .id-input-text input:focus ~ .bar:after {
  width: 50%;
}
.id-input-text .highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}
.id-input-text input:focus ~ .highlight {
  animation: inputHighlighter 0.3s ease;
}

@keyframes inputHighlighter {
  from {
    background: #4a89dc;
  }
  to {
    width: 0;
    background: transparent;
  }
}


@media screen and (max-width: 1024px) {
  /* Specific to this particular image */
  img.bg {
    left: 50%;
    margin-left: -512px;
    /* 50% */
  }
}


.validation-summary-errors {
    font-family: sans-serif;
    position: absolute;
    width: 350px;
    color: red;
    font-size: 12px;
    padding-left: 30px;
}

.field-validation-error{
     font-family: sans-serif;
     color:red;
     font-size:12px;
}

    .validation-summary-errors ul {
    list-style:none;
    padding:0;
    margin:0;

    }