﻿* {
	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;
}

.wrap-login100 {
	display: flex !important;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 0 56px !important;
	background: #fff !important;
	min-width: 420px;
	max-width: 480px;
	width: 480px !important;
	box-shadow: none !important;
	border-radius: 0 !important;
}

.wl-logo {
	margin-bottom: 28px;
	text-align: center;
	width: 100%;
}

	.wl-logo img {
		height: 44px;
	}

.wl-title {
	font-size: 22px;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0 0 6px 0;
	text-align: center;
	width: 100%;
}

.wl-subtitle {
	font-size: 13px;
	color: #6b7280;
	text-align: center;
	margin: 0 0 28px 0;
	line-height: 1.5;
	width: 100%;
}

.wl-avatar {
	text-align: center;
	margin-bottom: 16px;
	width: 100%;
}

	.wl-avatar img {
		width: 72px;
		height: 72px;
		border-radius: 50%;
		object-fit: cover;
		border: 3px solid #e5e7eb;
	}

.wl-greeting {
	width: 100%;
	text-align: center;
	margin-bottom: 24px;
}

	.wl-greeting h2 {
		font-size: 20px;
		font-weight: 700;
		color: #1a1a2e;
		margin: 0;
	}

.wl-field {
	width: 100%;
	margin-bottom: 16px;
}

	.wl-field label {
		display: block;
		font-size: 13px;
		font-weight: 600;
		color: #374151;
		margin-bottom: 6px;
	}

.wl-input-wrap {
	position: relative;
	display: flex;
	align-items: center;
}

	.wl-input-wrap .input100 {
		width: 100% !important;
		border: 1px solid #d1d5db !important;
		border-radius: 6px !important;
		padding: 10px 14px !important;
		padding-right: 70px !important;
		font-size: 14px !important;
		color: #111827 !important;
		background: #fff !important;
		box-shadow: none !important;
		outline: none;
		height: auto !important;
		transition: border-color 0.2s;
	}

		.wl-input-wrap .input100:focus {
			border-color: #2b3a52 !important;
			box-shadow: 0 0 0 3px rgba(43,58,82,0.08) !important;
		}

	.wl-input-wrap .focus-input100,
	.wl-input-wrap .symbol-input100 {
		display: none !important;
	}

.wl-toggle-senha {
	position: absolute;
	right: 12px;
	background: none;
	border: none;
	font-size: 12px;
	color: #6b7280;
	cursor: pointer;
	padding: 0;
	font-weight: 500;
	z-index: 2;
}

	.wl-toggle-senha:hover {
		color: #111827;
	}

.wl-btn-entrar {
	width: 100% !important;
	background: #2b3a52 !important;
	color: #fff !important;
	border: none !important;
	border-radius: 6px !important;
	padding: 12px !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	cursor: pointer;
	margin-top: 8px;
	text-align: center;
	transition: background 0.2s;
	display: block;
}

	.wl-btn-entrar:hover {
		background: #1e2a3a !important;
	}

.wl-links {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-top: 16px;
}

	.wl-links .esqueci-senha,
	.wl-links .trocar-usuario {
		font-size: 13px !important;
		color: #6b7280 !important;
		text-decoration: none !important;
		background: none !important;
		border: none !important;
		padding: 0 !important;
		cursor: pointer;
	}

		.wl-links .esqueci-senha:hover,
		.wl-links .trocar-usuario:hover {
			color: #111827 !important;
			text-decoration: underline !important;
		}
