a {
	color: #d6b066 !important   ;
}

body {
	margin: 0;
	bottom: 0;
	font-family: Arial, sans-serif;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.container {
	display: flex;
	height: 100vh;
}

.left-section {
	background: linear-gradient(135deg, #757073, #a0a0a5);
	color: #fff;
	font-size: 50px;
	width: 50%;
	padding: 20px;
	overflow: hidden;
	position: relative;
	place-content: center;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 1);
	z-index: 2;
}

.right-section {
	background-image: url("../d2p/images/bg_produtos.png");
	/*background-color: #f2f2f2;*/
	background-position: center top;
	background-repeat: no-repeat;
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1; /* Coloca o formulário na frente */
}

h1 {
	margin-bottom: 20px;
	font-size: 36px;
}

p {
	font-size: 24px;
	margin: 0;
}

form {
	width: 80%;
	max-width: 400px;
	display: flex;
	flex-direction: column;
}

input {
	padding: 12px 20px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 8px;
	background-color: #f9f9f9;
	font-size: 16px;
	transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, text-shadow 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
input:focus, input:hover {
	background-color: #fff;
	border-color: #d6b066;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
	outline: none;
	font-size: 14px;
	transform: scale(1.1);
}
button {
	background-color: #d6b066;
	color: white;
	padding: 12px 20px;
	border: none;
	border-radius: 25px;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
	font-size: 18px;
	cursor: pointer;
	transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, text-shadow 0.3s ease;
}
button:hover {
	background-color: #fff;
	color: #d6b066;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.6);
	text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
	transform: scale(1.1);
}

.btnEsqueceuSenha {
	margin-top: 10px;
	font-size: 14px;
	text-align: center;
	text-decoration: none;
}
.btnEsqueceuSenha:hover {
	text-decoration: underline;
}

.footer {
	margin-top: 40px;
	font-size: 14px;
	color: #7a7a7a;
}

.logo > img{
	filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
	width: 250px;
	height: auto;
	margin: 50px 20px;
}

@keyframes backAnim {
	from {
		background-position:  56px 0;
	}
	to {
		background-position:  0 56px;
	}
}
@keyframes blink {
	50% {
		opacity: 0;
	}
}
@keyframes color {
	20% {
		color: #fff;
	}
	40% {
		color: #FFD86C;
	}
}

.wrapper-title {
	margin: 35px 10px 10px 25px;
	font-size: 2vw;
	text-transform: uppercase;
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
	display: none;
	&:after {
		content: " ";
		display: inline-block;
		width: 15px;
		height: 3px;
		margin-left: 5px;
		background-color: #FFD86C;
		animation: 0.8s blink infinite;
	}
	.anim-text-title {
		color: #FFD86C;
		animation: 0.8s color ease-in;
	}
}

@media (max-width: 768px) {
	.left-section{
		display: none;
	}
	.right-section{
		width: 100%;
	}
}

::-moz-selection {
	color: #000000;
	background: #d6b066;
}

::selection {
	color: #000000;
	background: #d6b066;
}

.alert {
	padding: 15px;
	margin-bottom: 20px;
	border: 1px solid transparent;
	border-radius: 4px;
}

.alert-success {
	color: #3c763d;
	background-color: #dff0d8;
	border-color: #d6e9c6;
}

.alert-danger {
	color: #a94442;
	background-color: #f2dede;
	border-color: #ebccd1;
}

.alert-warning {
	color: #8a6d3b;
	background-color: #fcf8e3;
	border-color: #faebcc;
}
