﻿* {
  font-family: 'Source Sans Pro', sans-serif;
}
body {
  background: #f5f5f5;
}
.card-header h3 {
  margin-bottom: 0px;
}
textarea {
  resize: none;
}
.sep-orange-2 {
  width: 55px;
  height: 1px;
  position: relative;
  display: block;
  left: -10px;
  background-color: #be4b5a;
  margin: 20px auto 30px;
}
.sep-orange-2:before {
  content: '';
  width: 55px;
  height: 1px;
  position: absolute;
  right: -20px;
  background-color: #be4b5a;
  margin: 5px 0;
}
.forgot-password {
  color: rgba(0, 0, 0, 0.5);
}
.forgot-password:hover {
  color: rgba(0, 0, 0, 0.5);
}
/* Spinner */
#spinner {
 width: 100%;
 height: 100%;
 position: fixed;
 top: 0;
 left: 0;
 background-color: rgba(222, 226, 230, 0.4);
 z-index: 9998;
 display: none;
 text-align: center;
}
#spinner img {
 animation: rotation 2s infinite linear;
 -webkit-animation: rotation 2s infinite linear;
 position: absolute;
 top: 50%;
 left: 50%;
 width: 62px;
 height: 46px;
 margin-top: -23px; /* Half the height */
 margin-left: -31px; /* Half the width */
 z-index: 9999;
}
@-webkit-keyframes rotation {
from {
 transform: rotate(0deg);
 -webkit-transform: rotate(0deg);
 }
to {
 transform: rotate(359deg);
 -webkit-transform: rotate(359deg);
 }
}