/*
 * TELA DE LOGIN - ONE7
 * Desenvolvimento: Douglas A. de Oliveira
 * Data: 11/07
*/

/*RESET - GERAL*/
*{
    margin: 0;
    padding: 0;
    outline: 0;
    font-family: 'IBM Plex Sans', sans-serif;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

html, body {
    margin: 0;
    height: 100%;
    background: rgb(113,77,236);
    background: -webkit-linear-gradient(left, rgba(113,77,236,1) 1%, rgba(80,153,246,1) 59%, rgba(54,213,254,1) 100%);
    background: -o-linear-gradient(left, rgba(113,77,236,1) 1%, rgba(80,153,246,1) 59%, rgba(54,213,254,1) 100%);
    background: linear-gradient(to right, rgba(113,77,236,1) 1%, rgba(80,153,246,1) 59%, rgba(54,213,254,1) 100%);
}

.container {
	width: 100%;
	display: flex;
}

.content {
	width: 60%;
	margin: auto;
	padding-top: 20px;
	float: left;
}

/*LOGIN | 01*/
.login_bloco {
  width: 450px;
	height: auto;
	margin: 60px auto 25px auto;
	padding: 60px 40px;
	background: #FFF;
	border-radius: 6px;
}

.login_bloco img {
	display: block;
	text-align: center;
  margin: 0px auto 45px auto;
  width: 330px;
}

.login_bloco .recuperarSenha {
	font-size: 14px;
	text-decoration: none;
	margin-left: 15px;
	display: block;
	margin: 15px 0 20px 0;
}

.login_bloco .recuperarSenha:hover {
  text-decoration: underline;
}

.img-logo-login {
  width: 100%;
  height: 95px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


.login_image {
  height: 85px;
  margin-bottom: 30px;
}

.label-float {
  position: relative;
  padding-top: 13px;
  margin-bottom: 20px;
}

.label-float input {
  border: 2px solid transparent;
  border-bottom-color: #eff1fe;
  border-left-color: #FFF;
  border-right-color: #FFF;
  border-top-color: #FFF;
  outline: none;
  width: 100%;
  padding: 17px 10px 12px 15px;
  margin-bottom: 5px;
  font-size: 15px;
  transition: all .1s linear;
  -webkit-transition: all .1s linear;
  -moz-transition: all .1s linear;
  -webkit-appearance:none;
}

.label-float input:focus {
  border: 2px solid #4b4bed;
  border-radius: 5px;
}

.label-float input:hover:not(:focus) {
  border: 2px solid #eff1fe;
  border-radius: 5px;
}

.label-float input::placeholder {
  color:transparent;
  font-size: 14px;
}

.label-float label {
  pointer-events: none;
  position: absolute;
  top: calc(50% - 8px);
  left: 10px;
  transition: all .1s linear;
  -webkit-transition: all .1s linear;
  -moz-transition: all .1s linear;
  background-color: white;
  padding: 5px;
  box-sizing: border-box;
  color: #082184;
}

/*
.label-float input:required:invalid + label {
  color: #cc0a00;
}

.label-float input:focus:required:invalid {
  border: 2px solid #cc0a00;
}

.label-float input:required:invalid + label:before {
  content: '*';
}
*/

.label-float input:focus + label,
.label-float input:not(:placeholder-shown) + label {
  font-size: 14px;
  top: 0;
  color: #3951b2;
}

.btn {
	position: relative;
	top: 15px;
	width: 100%;
  display: inline-block;
  cursor: pointer;
  padding: 13px 12px;
  background: #5f77f1;
  font-weight: bold;
  font-size: 1em;
  color: #fff !Important;
  text-decoration: none !important;
  text-align: center;
  border: none;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  text-shadow: 1px 1px #555;
  transition: background-color 0.5s ease;
  margin-bottom: 10px;
}

.btn:hover {
  background: #5a81f3;
}

.btn:active {
  background: #5789f4;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.loader {
  text-align: center;
  color: #5f77f1;
  font-size: 1.5em;
  padding: 30px;
}

.help-block {
  margin: 20px 0;
  color: #cc0a00;
}

.success-block {
  margin: 20px 0;
  color: #3c763d;
}