* {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}
html,
body {
  width: 100%;
  height: 100%;
  font-family: 'Open Sans', sans-serif;
  font-weight: 200;
  background: #090072;
  cursor : url(images/cursors/NormalSelect.cur),pointer;
}
.login {
  position: relative;
  top: 40%;
  width: 350px;
  display: table;
  margin: -150px auto 0 auto;
  /*background: rgba(0,0,0,0.5);*/
   background: #fff;
  border-radius: 4px;
}
.legend {
  position: relative;
  width: 100%;
  display: block;
  /*background: #ffffff;*/
  padding: 15px;
  color: #fff;
  font-size: 20px;
}
.legend:after {
  content: "";
  background-image: url(images/multy-user.png);
  background-size: 100px 100px;
  background-repeat: no-repeat;
  background-position: 354px -16px;
  opacity: 0.06;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
}
.input {
  position: relative;
  width: 90%;
  margin: 15px auto;
}
.input span {
  position: absolute;
  display: block;
  color: #d4d4d4;
  left: 10px;
  top: 8px;
  font-size: 20px;
}
.input input {
  width: 100%;
  padding: 10px 5px 10px 40px;
  display: block;
  border: 1px solid #EDEDED;
  border-radius: 4px;
  transition: 0.2s ease-out;
  /*color: #a1a1a1;*/
  color:#191919;
}
.input input:focus {
  padding: 10px 5px 10px 10px;
  outline: 0;
  border-color: #4E9EDF;
}
.submit {
  width: 45px;
  height: 45px;
  display: block;
  margin: 0 auto -15px auto;
  background: #fff;
  border-radius: 100%;
  border: 1px solid #2464A6;
  color: #4E9EDF;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0px 0px 0px 7px #fff;
  transition: 0.2s ease-out;
}
.submit:hover,
.submit:focus {
  background: #4398DD;
  color: #fff;
  outline: 0;
}

.feedback{
    text-align: center;
  font-size: 12px;
  padding: 5px;
  color: red;
}
input.custbtn, a.custbtn {
	padding: 10px 15px;
    background: #12365a;
    color: #ffffff;
    cursor: pointer;
    border-radius: 3px;
    border: 1px solid #CCC;
}

a.custbtn {
  text-decoration: none;
  padding: 8px 14px;
  font-size: 14px;
}

.regform
{
	position: relative;
  top: 40%;
  width: 350px;
  margin: -150px auto 0px;
  border-radius: 4px;
  padding: 21px;
  background:#7a7bbb;
}

.fpwdform
{
	position: relative;
  top: 55%;
  width: 350px;
  margin: -150px auto 0px;
  border-radius: 4px;
  padding: 21px;
  background: #7a7bbb;
}

.feedback_success{
	text-align: center;
    font-size: 12px;
    padding: 5px;
    color: #00af1f;
}
.pwdalert{
	text-align: center;
    font-size: 12px;
    padding: 5px;
    color: #00af1f;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80% !important;
  color: #e3342f !important;  
  position: relative !important;
}

.btn-primary {
    color: #fff;
    background-color: #12365a !important;
    border-color: #002b56 !important;
}