.login {
	background-color: #1570a6 !important;
}
.login-form {
	width: 350px;
	margin: 100px auto;
}
.login-form form {
	margin-bottom: 15px;
	background-color: #fff;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
	padding: 30px;
}
.login-form h4 {
	margin: 0 0 15px;
	font-weight: 300;
}
.login-form .input-group-text {
	background-color: #fff!important;
}
.form-control, .btn {
	min-height: 38px;
	border-radius: 2px;
}
.btn {        
	font-size: 15px;
}
/* Spinner */
.spinner {
	width: 50px;
	height: 50px;
	display: inline-block;
	padding: 0px;
	border-radius: 100%;
	border: 6px solid;
	border-top-color: #005a9c;
	border-bottom-color: #005a9c;
	border-left-color: rgba(0, 90, 156, 0.15);
	border-right-color: rgba(0, 90, 156, 0.15);
	-webkit-animation: spinner 0.8s ease-in-out infinite alternate;
	animation: spinner 0.8s ease-in-out infinite alternate;
  }
  @keyframes spinner {
	from {
	  -webkit-transform: rotate(0deg);
			  transform: rotate(0deg);
	}
	to {
	  -webkit-transform: rotate(360deg);
			  transform: rotate(360deg);
	}
  }
  @-webkit-keyframes spinner {
	from {
	  -webkit-transform: rotate(0deg);
	}
	to {
	  -webkit-transform: rotate(360deg);
	}
  }

  .select2-input {
	display: block;
	position: relative;
    flex: 1 1 0%;
    min-width: 0;
	min-height: 38px;
	width: 86%;
  }
  .select2-container-multi .select2-choices {
	border: 1px solid #ced4da!important;
  }
  .select2-input .select2-search-choice {
	padding: 8px 5px 8px 18px!important;
    margin: 5px 0 5px 5px!important;
  }
  #frmLogin .input-group {
	  margin-bottom: 1rem;
  }