label.error{
  color: #f00;
}
input.error{
  border: solid 2px #f00 !important;
}
/* Spinner */
.lds-hourglass {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-hourglass.hide {
  display: none;
}
.lds-hourglass:after {
  content: " ";
  display: block;
  border-radius: 50%;
  width: 0;
  height: 0;
  margin: 6px;
  box-sizing: border-box;
  border: 26px solid #00acac;
  border-color: #00acac transparent #00acac transparent;
}
.animateSpin{
  animation: lds-hourglass 1.2s infinite;
}
.ribbonDemo{
  display: block;
  font-size: 1.2em !important;
  border: solid 2px #B77F07;
  margin-top: 8px;
}
.error{
  text-align: left;
}
@keyframes lds-hourglass {
  0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    transform: rotate(900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    transform: rotate(1800deg);
  }
}

img.logo{
  display: block; clear:both;
  width:auto; max-width:200px;
  margin: 0 auto 28px auto;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
}
a{
  color:#ccc;
}
a:hover{
  color:#fff;
  text-decoration:none;
}