* { box-sizing:border-box; }

body {
	background: url(../img/bg.jpg) no-repeat top center #eee;
	/* background-size: 100%; */
	-webkit-font-smoothing: antialiased;
	font-family: 'Roboto Condensed', sans-serif;
}

.login-logo img
{
	position: relative;
    margin-bottom: -29px;
}

h1.titulo {
	color: #636363;
	background: url(../img/logo.png) no-repeat;
	background-size: 100%;
	width: 320px;
	height: 110px;
	overflow: hidden;
	text-indent: -999px;
	display: block;
	margin: 0 auto;
}

.img-responsive {
	max-width: 100%;
	height: auto;
	display:block;
}

h1 {
	color: #636363;
	margin: 0 0 51px 0;
	padding: 0;
	font-weight: 700;
	font-size: 27px;
}

.outroslinks a {
	color: #636363;
	text-decoration: none;
	font-size: 16px;
}

.outroslinks a:hover {
	color: #000;
}

.pdd {
	background: rgba(250,250,250,0.7);
	/* 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;
	margin: 10px;
	padding: 20px;
	min-height: 405px;
}

hgroup {
	text-align:center;
	margin-top: 4em;
}

h3 { font-weight: 300; color: #4a89dc; }

form {
	width: 100%;
	margin: 15px auto;
	display: block;
}

form .group:last-child {
	margin-bottom: 0px;
}


.group {
	position: relative;
	margin-bottom: 27px;
}

input {
	font-size: 18px;
	padding: 10px 10px 10px 5px;
	-webkit-appearance: none;
	display: block;
	background: #fafafa;
	color: #636363;
	width: 100%;
	border: none;
	border-radius: 0;
	border-bottom: 1px solid #757575;
}

input:focus { outline: none; }

/* Label */

label {
	color: #999;
	font-size: 18px;
	font-weight: normal;
	position: absolute;
	pointer-events: none;
	left: 5px;
	top: 10px;
	-webkit-transition: all 0.2s ease;
	        transition: all 0.2s ease;
}


/* active */

input:focus ~ label, input.used ~ label {
	top: -20px;
  -webkit-transform: scale(.75);
      -ms-transform: scale(.75);
          transform: scale(.75); left: -2px;
	/* font-size: 14px; */
	color: #4a89dc;
}


/* Underline */

.bar {
	position: relative;
	display: block;
	width: 100%;
}

.bar:before, .bar:after {
	content: '';
	height: 2px;
	width: 0;
	bottom: 1px;
	position: absolute;
	background: #4a89dc;
	-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; }
}


/* Button */

.button {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  margin: .3em 0 1em 0;
  width: 100%;
  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-bottom: 2px solid #3160B6;
  cursor: pointer;
  -webkit-transition: all 0.15s ease;
          transition: all 0.15s ease;
}
.button:focus { outline: 0; }


/* Button modifiers */

.buttonBlue {
  background: #4a89dc;
  text-shadow: 1px 1px 0 rgba(39, 110, 204, .5);
}

.buttonBlue:hover { background: #357bd8; }


/* Ripples container */

.ripples {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
}


/* Ripples circle */

.ripplesCircle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.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 {

}

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; }

.login-frm {
    padding: 20px;
    padding-bottom: 50px;
}

#tracking_form
{
	margin-bottom: 100px;
	padding-top: 50px;
}

.pass
{
	float:right;
}
#password_form
{
	margin-bottom: 20px;
	position:relative;
	height:345px;
}

#login_form
{
	position:relative;
}

#card {
    width: 100%;
    float: left;
    /*min-height: 500px;*/
}

.block {
	display: block;
}
.msgerro {
	color: red;
	display: none;
}
