* { box-sizing:border-box; }

html,body {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	display: table;
}

body {
	display: table-cell;
	vertical-align: middle;
	font-family: Roboto;
	position: relative;
  background-image: url("../images/plm_login_bg.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%; /* Adjust width and height of the image */
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  width: 100%; /* Set the width of the body */
  height: 100vh; /* Set the height to fill the viewport */
}

/*body {
  display: table-cell;
  vertical-align: middle;
  font-family: Roboto;
  position: relative;
  background-image: url("../images/pwu_taft.png");
  background-size: cover;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}
*/

.loader {
	display: table-cell;
	height: 4px;
	width: 100%;
	position: relative;
	overflow: hidden;
	background-color: #ddd;
}
.loader:before{
  display: block;
  position: absolute;
  content: "";
  left: -200px;
  width: 200px;
  height: 4px;
  background-color: #337ab7;
  animation: loading 2s linear infinite;
}

@keyframes loading {
    from {left: -200px; width: 30%;}
    50% {width: 30%;}
    70% {width: 70%;}
    80% { left: 50%;}
    95% {left: 120%;}
    to {left: 100%;}
}

h4 { color: #515151; }

form{
	width: 440px;
	margin: auto;
	display: table;
	padding: 2em 2em 2em 2em;
	background: #fafafa;
	border: 1px solid #ebebeb;
	box-shadow: rgba(0,0,0,0.14902) 0px 1px 1px 0px,rgba(0,0,0,0.09804) 0px 1px 2px 0px;
}

#logo {
	width: auto;
	height: 130px;
	display: block;
	margin: 0px auto;
}

.group { 
	position: relative; 
	margin-top: 10px;
	margin-bottom: 10px; 
}

input {
	font-size: 16px;
	display: block;
	background: #fafafa;
	color: #636363;
	width: 100%;
	/*border: none;*/
	border-radius: 5px;
	border: 1px solid #757575;
  height:35px; 
  margin: 0px !important;
}

input:focus { outline: none; }


/* Label */

label#dlabel{
	color: #999; 
	font-size: 16px;
	font-weight: normal;
	position: absolute;
	pointer-events: none;
  left: 40px;
	/*left: 10px;*/
	top: 7px;
	-webkit-transition:all 0.2s ease;
	transition: all 0.2s ease;
}


/* active */

input:focus ~ label#dlabel, input.used ~ label#dlabel {
	top: -25px;
  -webkit-transform: scale(.75);
          transform: scale(.75); left: 0px;
	font-size: 20px !important;
   font-family: tahoma;
  font-weight: normal;
	color: #215078;
}

/* Underline */

.bar {
	position: relative;
	display: block;
	width: 99%;
  margin-left: 2px;
}

.bar:before, .bar:after {
	content: '';
	height: 2px; 
	width: 0;
	bottom: 1px; 
	position: absolute;
	background: #337ab7; 
	-webkit-transition:all 0.2s ease; 
	transition: all 0.2s ease;
}

.bar:before { left: 50%; }

.bar:after { right: 50%; }


/* active */

input:focus ~ .bar:before, input:focus ~ .bar:after { width: 50%; }

/* Highlight */

.highlight {
	position: absolute;
	height: 60%; 
	width: 100px; 
	top: 25%; 
	left: 0;
	pointer-events: none;
	opacity: 0.5;
}

/* active */

input:focus ~ .highlight {
	-webkit-animation: inputHighlighter 0.3s ease;
	        animation: inputHighlighter 0.3s ease;
}

/* Animations */

@-webkit-keyframes inputHighlighter {
	from { background: #4a89dc; }
	to 	{ width: 0; background: transparent; }
}

@keyframes inputHighlighter {
	from { background: #4a89dc; }
	to 	{ width: 0; background: transparent; }
}

select:not(:-internal-list-box) {
    overflow: visible !important;
}

/* Select */
.select{
	float: left;
	width: 100%;
	border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 10px;
  position: relative;
  font-size: 16px;
  height: auto;
  padding: 10px;
  box-sizing: border-box;
  line-height: 1.42857143;
  color: #555;
  background-color: #fafafa;
  background-image: none;
  border: solid 1px #337ab7;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  outline: none;
}
/*select{
	border: solid 2px #99CB51;
	outline: none;
}*/
.select-date{
	float: left;
	width:33.33%;
	border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 10px;
    position: relative;
    font-size: 16px;
    height: auto;
    padding: 10px;
    box-sizing: border-box;
    line-height: 1.42857143;
    color: #555;
    background-color: #fafafa;
    background-image: none;
    border: 1px solid #337ab7;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    outline: none;
}

/* Button */
.button {
  position: relative;
  display: inline-block;
  padding: 8px 8px;
  margin: .3em 0 1em 0;
  margin-left: 213px;
  width: 44%;
  vertical-align: middle;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  letter-spacing: 1px;
  background: transparent;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition:all 0.15s ease;
  transition: all 0.15s ease;
}
.button:focus { outline: 0; }


/* Button modifiers */

.buttonBlue {
  background: #337ab7;
  text-shadow: 1px 1px 0 rgba(82, 54, 99, .5);
}

.buttonBlue:hover { background: #215078; }


/* Ripples container */

.ripples {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 40%;
  overflow: hidden;
  background: transparent;
}

/* Ripples circle */

.ripplesCircle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgb(255, 255, 255);
}

.ripples.is-active .ripplesCircle {
  -webkit-animation: ripples .4s ease-in;
          animation: ripples .4s ease-in;
}


/* Ripples animation */

@-webkit-keyframes ripples {
  0% { opacity: 0; }

  25% { opacity: 1; }

  100% {
    width: 200%;
    padding-bottom: 200%;
    opacity: 0;
  }
}

@keyframes ripples {
  0% { opacity: 0; }

  25% { opacity: 1; }

  100% {
    width: 200%;
    padding-bottom: 200%;
    opacity: 0;
  }
}

footer { text-align: center; }

footer p {
	color: #888;
	font-size: 13px;
	letter-spacing: .4px;
}

footer a {
	color: #4a89dc;
	text-decoration: none;
	-webkit-transition:all .2s ease;
	transition: all .2s ease;
}

footer a:hover {
	color: #666;
	text-decoration: underline;
}

footer img {
	width: 80px;
	-webkit-transition:all .2s ease;
	transition: all .2s ease;
}

footer img:hover { opacity: .83; }

footer img:focus , footer a:focus { outline: none; }

.footer-wrapper{
  position:relative;
  padding: 30px;
  z-index: 1;
  text-align: center;
  color: #AAAAAA;
  font: 0px 'Roboto';
  font-size: 10px;

}

.footer-wrapper a{
  color: #AAAAAA;
}

 .bkgicon{
    border-top-right-radius:6px !important;
    border-bottom-right-radius:6px !important;
    background-color: white !important;
    height: 46px!important;
  }
  .input-group>input{
  border-right: 0px;
  border-color: #ccc ;
  box-shadow: none ;

}
/* style icon */
.inner-addon .glyphicon {
  position: absolute;
  padding: 45px;
  top: -60%;
 box-shadow: none !important;
}
#leftt{
  position: relative;
  left: 1.8%;
}

/* align icon */
.left-addon .glyphicon  { left:  0px;}
.right-addon .glyphicon { right: -10%;}

/* add padding  */
.left-addon input  { padding-left:  30px; }
.right-addon input { padding-right: 30px; }


.input-group-focus {
  border-radius:4px;
  -webkit-transition: box-shadow ease-in-out .15s;
          transition: box-shadow ease-in-out .15s;
}
.input-group-addon {
  -webkit-transition: border-color ease-in-out .15s;
          transition: border-color ease-in-out .15s;
}
.input-group.input-group-focus {
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6) !important;
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6) !important;  
}
.has-error.input-group.input-group-focus,
.has-error .input-group.input-group-focus {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483 !important;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483 !important;
}
.has-warning.input-group.input-group-focus,
.has-warning .input-group.input-group-focus {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168 !important;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168 !important;
}
.has-success .input-group.input-group-focus,
.has-success .input-group.input-group-focus {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b !important;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b !important;
}
.input-group-focus input:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.input-group-focus input {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.input-group .input-group-addon {
  border-color: #ccc !important;
}
.input-group-focus .input-group-addon {
  border-color: #66afe9 !important;
}
.has-error .input-group-addon {
  border-color: #843534 !important;
}
.has-success .input-group-addon {
  border-color: #2b542c !important;
}
.has-warning .input-group-addon {
  border-color: #66512c !important;
}
.input-group>input{
  border-right: 0px;
  border-color: #ccc ;
  box-shadow: none ;

}
.form-control{
  font-size: 13.5px ;
  font-family: Tahoma ;
}
#txtPwd
{
  margin-top: 0px;
}