﻿* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

body, html {
	height: 100%;
}

input {
	outline: none;
	border: 1px solid black;
}

	input:focus::-webkit-input-placeholder {
		color: transparent;
	}

	input:focus:-moz-placeholder {
		color: transparent;
	}

	input:focus::-moz-placeholder {
		color: transparent;
	}

	input:focus:-ms-input-placeholder {
		color: transparent;
	}

	input::-webkit-input-placeholder {
		color: #999999;
	}

	input:-moz-placeholder {
		color: #999999;
	}

	input::-moz-placeholder {
		color: #999999;
	}

	input:-ms-input-placeholder {
		color: #999999;
	}

button {
	outline: none !important;
	border: none;
	background: transparent;
}

	button:hover {
		cursor: pointer;
	}

.limiter {
	width: 100%;
	margin: 0 auto;
}

.container-login100 {
	width: 100%;
	height: 100vh;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 15px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	position: relative;
	z-index: 1;
}

	.container-login100::before {
		content: "";
		display: block;
		position: absolute;
		z-index: -1;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
	}

.wrap-login100 {
	background: transparent;
	width: 50%;
	max-width: 600px;
	background-color: rgba(255,255,255,0.75) !important;
	border-radius: 10px;
	padding-top: 30px;
}

.login100-form {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.login100-form-title {
	font-size: 24px;
	color: #fff;
	line-height: 1.2;
	text-align: center;
	width: 100%;
	display: block;
}

/*---------------------------------------------*/
.login100-form-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto;
}

	.login100-form-avatar img {
		width: 100%;
	}


/*---------------------------------------------*/
.wrap-input100 {
	position: relative;
	width: 100%;
	z-index: 1;
}

.input100 {
	font-size: 15px;
	line-height: 1.2;
	color: #333333;
	display: block;
	width: 100%;
	background: #fff;
	height: 50px;
	padding: 0 30px 0 53px;
}

.focus-input100 {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	box-shadow: 0px 0px 0px 0px;
	color: rgba(0,91,234, 0.6);
}

.input100:focus + .focus-input100 {
	-webkit-animation: anim-shadow 0.5s ease-in-out forwards;
	animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
	to {
		box-shadow: 0px 0px 80px 30px;
		opacity: 0;
	}
}

@keyframes anim-shadow {
	to {
		box-shadow: 0px 0px 80px 30px;
		opacity: 0;
	}
}

.symbol-input100 {
	font-size: 15px;
	color: #999999;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding-left: 30px;
	pointer-events: none;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}

.input100:focus + .focus-input100 + .symbol-input100 {
	color: #fb8000;
	padding-left: 23px;
}


/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.login100-form-btn {
	font-size: 15px;
	line-height: 1.5;
	color: #FFFFFF;
	width: 100%;
	font-weight: bold;
	height: 50px;
	border-style: solid !important;
	border-width: thin !important;
	background: #024769;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 25px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
	position: relative;
	z-index: 1;
}

	.login100-form-btn::before {
		content: "";
		display: block;
		position: absolute;
		z-index: -1;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background: #0571A6;
		background: -webkit-linear-gradient(left, #0571A6, #fb8000);
		background: -o-linear-gradient(left, #0571A6, #fb8000);
		background: -moz-linear-gradient(left, #0571A6, #fb8000);
		background: linear-gradient(left, #0571A6, #fb8000);
		-webkit-transition: all 0.4s;
		-o-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
		opacity: 0;
	}

	.login100-form-btn:hover {
		background: #0571A6;
		color: #fff;
	}

		.login100-form-btn:hover:before {
			opacity: 1;
		}

.validate-input {
	position: relative;
}


/*//////////////////////////////////////////////////////////////////
[ responsive ]*/

.form-row {
	width: 100%;
}

@media (min-width: 577px) {
	.form-row {
		display: flex;
		align-items: center;
	}
}

@media (max-width: 576px) {
	.wrap-login100 {
		width: 75%;
		padding-top: 40px;
		padding-left: 15px;
		padding-right: 15px;
	}
	.form-row {
		margin-right: 0px;
		margin-left: 0px;
	}
}

@media (max-width: 768px) {
	.wrap-login100 {
		width: 65%;
	}
}

.p-t-200 {
	padding-top: 200px;
}

.p-t-20 {
	padding-top: 20px;
}

.p-t-10 {
	padding-top: 10px;
}

.p-t-25 {
	padding-top: 25px;
}



.p-b-30 {
	padding-bottom: 30px;
}

.p-b-40 {
	padding-bottom: 40px;
}

.p-b-20 {
	padding-bottom: 20px;
}

.p-b-230 {
	padding-bottom: 230px;
}


.m-b-10 {
	margin-bottom: 10px;
}

.m-b-20 {
	margin-bottom: 20px;
}

.w-full {
	width: 100%;
}

.trocar-usuario {
	font-weight: bold;
	font-size: 16px;
}

.trocar-usuario a {
	color: white;
}

/* --------------------------------------------------------------------------- */

.rodapeLogin {
	background-color: #0571A6;
	width: 100%;
	position: fixed;
	left: 0;
	bottom: 0;
	align-items: center;
	line-height: 25px;
}

.opcoesRodape {
	text-align: center;
	margin: -0.1%;
	list-style: none;
	color: white;
	font-size: 19px;
	font-weight: bolder;
	padding: 0 !important;
}

.opcoesRodape li {
	display: inline-block;
}

	.opcoesRodape li a {
		color: inherit;
		margin: 10px;
	}

.popover {
	border: 1px solid red;
	border-radius: 50%;
}

.popover-title {
	display: none;
}

.popover-content {
	color: #000;
	padding: 0px;
}
