body{
  background: #eeeeee;
  font-family: "Arial";
}

.container{
  width: 100%;
}
.main{
  width: 252px;
  margin: 0 auto;
}
.login-box {
  /*background: #ffffff;
  height: 320px;
  margin: 25vh auto;
  border: 2px solid #ccc;
  border-radius: 5px;*/
  border-style: solid;
  border-width: 1px;
  border-color: rgb(206, 206, 206);
  -ms-border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.06);
  margin: 25vh auto;
  position: absolute;
  width: 252px;
  /*height: 240px;*/
  z-index: 5;
}

.login-box h3 {
  width: calc(100% + 10px);
  position: relative;
  background: #1f4c78;
  padding: 5px 20px;
  color: #fff;
  text-align: left;
  margin-left: -10px;

  font-size: 13px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.2;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.21);
  z-index: 15;
}
.bltri:before,.bltri:after{
  content: '';
  position: absolute;
  height: 0;
  width: 0;
}

.bltri:before {
  top: 100%;
  left: 0px;
  border-top: 10px solid #1f4c78;
  border-left: 10px solid transparent;
}

.bltri:after {
  bottom: 100%;
  left: 0px;
  border-bottom: 10px solid #1f4c78;
  border-left: 10px solid transparent;
}

.content{
  width: 85%;
  margin: 0 auto;
}

.login-box > .content{
  margin-bottom: 18px;
}

.input-custom{
  margin-top: 13px;
  width: 100%;

  background-image: -moz-linear-gradient( 90deg, rgb(255,255,255) 0%, rgb(234,234,234) 100%);
  background-image: -webkit-linear-gradient( 90deg, rgb(255,255,255) 0%, rgb(234,234,234) 100%);
  background-image: -ms-linear-gradient( 90deg, rgb(255,255,255) 0%, rgb(234,234,234) 100%);
}
.btn-custom{
  margin-top: 13px;
  width: 100%;
}

#submit{
  height: 30px;
  color: #FFF;
  font-size: 12px;
  padding-bottom: 20px;
  border-style: solid;
  border-width: 3px;
  border-color: rgb(236, 236, 236);
  -ms-border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  background: #1f4c78;
  box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.75);
}

#username{
  background: url(../img/user.png) no-repeat scroll 5px 7px;
  background-size: 15px auto;
  padding-left:25px;
  height: 30px;

  border-style: solid;
  border-width: 1px;
  border-color: rgb(195, 195, 195);
  -ms-border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  font-size: 11px;
}

#password{
  background: url(../img/pass.png) no-repeat scroll 5px 7px;
  background-size: 15px auto;
  padding-left:25px;
  height: 30px;

  border-style: solid;
  border-width: 1px;
  border-color: rgb(195, 195, 195);
  -ms-border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  font-size: 11px;
}

input:-ms-input-placeholder{
  font-size: 11px;
  line-height: 12px;
}
input::-webkit-input-placeholder{
  font-size: 11px;
  line-height: 12px;
}
input::-moz-input-placeholder{
  font-size: 8px;
  line-height: 12px;
}
input:-moz-input-placeholder{
  font-size: 11px;
  line-height: 12px;
}

