.wrapper, body, html {
  min-height: 100%;
}
body {
  margin:0;
  font-family: "Source Sans Pro",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
  height: 100vh;
  justify-content: center;
}
div,p,body{
	margin:0;
	padding:0;
}
.center{
	text-align:center;
}
.image-bg{
    float:left;
    width:60%;
    background:red;
    height:100%;
}
.login-field{
    float:left;
    width:40%;
    height:100%;
    background:white;
}
.login-field-inner{
    padding:50px 20px 20px 20px;
}
.input-group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control, .input-group > .form-control-plaintext {
  position: relative;
  -ms-flex: 1 1 auto;
  flex:1 1 auto;
  width: 1%;
  min-width: 0;
}
.form-control-lg {
  height: calc(2.875rem + 2px);
  padding:.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius:.3rem;
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.form-control {
  display: block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 15px 30px 15px 15px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border:1px solid #ced4da;
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: rgb(206, 212, 218);
  border-radius:.25rem;
  box-shadow: inset 0 0 0 transparent;
  transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  margin-bottom: 15px;
}
.input-group-icon{
  position:absolute;
  right: 10px;
  top: 20px;
  color: #777;
}
input[type="submit"],.button{
    background-color: var(--secondary);
    border: 1px solid var(--secondary);
    border-top-color: rgb(99, 94, 190);
    border-right-color: rgb(99, 94, 190);
    border-bottom-color: rgb(99, 94, 190);
    border-left-color: rgb(99, 94, 190);
    color: rgba(255,255,255,.9);
    text-align: center;
    white-space: nowrap;
    border: 1px solid transparent;
    border-radius: 50px;
    padding: 8px 25px;
    font-size: .875rem;
    transition: all .2s ease;
    vertical-align: middle;
    font-weight: 300;
    cursor: pointer;
	box-shadow: 0 5px 10px rgba(99,94,190,.4) !important;
	display:block;
}
.full-btn{
    width:100%;
}
input[type="submit"]:hover{
    background-color: var(--primary);
    border: 1px solid var(--primary);
}
.dialog{
	position: fixed;
	z-index: 1000000000000000000000000000000015;
	content:'';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	display:none;
}
.form-content{
	background:#ffffff;
}
.form-heading{
	padding:10px;
	color:#fa8c5c;
	font-weight:bold;
	border-bottom:1px solid #818a91;
}
.form-content-elements{
	padding: 10px 24px 20px 10px;
}
.form-content-elements p{
	margin-top:10px;
}
.dialog-content{
	margin: 1em auto;
	display:none;
	width: 95%;
	max-width: 900px;
	margin:70px auto 40px auto;
	position:relative;
	background-color: #fff;
	border: 1px solid #999;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 6px;
	-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
	box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
	background-clip: padding-box;
	outline: 0;
	text-align:left;
}
.dialog-content .dialog-body{
	max-height: 400px;
	overflow: auto;
	padding: 0.4em 0.8em;
	min-height: 5em;
}
.dialog-content .dialog-body select{
	font-size: 14px;
	line-height: 1.42857;
	padding: 6px 12px;
	width:100%;
}
.dialog-content .dialog-footer {
  border-top: 1px solid #e5e5e5;
  padding: 0.4em 0.8em;
}
.dialog-content .dialog-header {
  border-bottom: 1px solid #e5e5e5;
  border-bottom-color: rgb(229, 229, 229);
  padding: 0.4em 0.8em;
  font-weight:bold;
  background:var(--primary);
  color:#fff;
}
.compulsory{
	color:red;
	font-weight:bold;
}
.bold{
    font-weight:bold;
}
.pull-right{
	float:right;
}
.remain-inline,.inline-block{
	display:inline-block;
	vertical-align:top;
}
a{
	text-decoration:none;
	color: #212529;
}
a.link:hover{
	text-decoration:underline;
}
.poweredby{
	font-weight:bold;
	color:var(--primary);
}
.bordered-btn{
	background:#ffffff;
	border:1px solid var(--primary);
	color:var(--primary);
}
.bordered-btn:hover{
	background: var(--primary);
	color:#ffffff;
}
#animation,#dialog_animation{
	display:none;
}
.spinner {
  height: 20px;
  width: 20px;
  animation: rotate 0.8s infinite linear;
  border: 8px solid var(--primary);
  border-right-color: transparent;
  border-radius: 50%;
  margin-left:auto;
  margin-right:auto;
}

@keyframes rotate {
  0%    { transform: rotate(0deg); }
  100%  { transform: rotate(360deg); }
}
.ajax-form-spinner {
  height: 10px;
  width: 10px;
  animation: rotate 0.8s infinite linear;
  border: 8px solid var(--primary);
  border-right-color: transparent;
  border-radius: 50%;
  margin-left:auto;
  margin-right:auto;
}
@keyframes rotate {
  0%    { transform: rotate(0deg); }
  100%  { transform: rotate(360deg); }
}
.dialog-header a{
    color:#fff;
}
input[type="date"], input[type="datetime-local"], input[type="datetime"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], select, textarea {
  padding: 0px 10px 0px 10px;
  line-height: 2;
  min-height: 30px;
  margin-top:10px;
  width:100%;
}
select{
	 padding: 5px 10px 5px 10px;
}
.information p, .success p, .warning p,.validation p,.error p{
	padding-bottom: 3px;
}
.information {
	color: #00529B;
	background-color: #BDE5F8;
	background-image: url('../images/info.png');
}
.success {
	color: #4F8A10;
	background-color: #88ffd1;
	background-image:url('../images/success.png');
}
.warning {
	color: #9F6000;
	background-color: #FEEFB3;
	background-image: url('../images/warning.png');
}
.error,.success,.warning,.information {
	margin: 10px 0px;
	padding: 5px 5px 5px 50px;
	background-repeat: no-repeat;
	background-position: 10px center;
}
.error {
	color: #D8000C;
	background-color: #FFBABA;
	background-image: url('../images/error.png');
}
.cursor{
	cursor:pointer;
}
#feedback{
	position: fixed;
	bottom: -10px;
	right: 0;
	z-index: 1000000000000000000000000000000016;
}
.error .cursor,.success .cursor{
	margin-left:10px;
}
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #13a8ff;
  --secondary: #000;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: "Source Sans Pro",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
}