﻿/* ==================== NAVBAR TOGGLER ==================== */
.navbar-dark .navbar-toggler {
	border: 2px solid rgba(0, 255, 136, 0.7); /* borda verde neon */
	border-radius: 8px;
	padding: 0.4rem 0.6rem;
	transition: all 0.3s ease;
}

.navbar-dark .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,255,136,0.95)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Hover e Focus → muda para dourado */
.navbar-dark .navbar-toggler:hover,
.navbar-dark .navbar-toggler:focus {
	border-color: #fdcf47;
	box-shadow: 0 0 12px rgba(253, 207, 71, 0.6);
}

	.navbar-dark .navbar-toggler:hover .navbar-toggler-icon,
	.navbar-dark .navbar-toggler:focus .navbar-toggler-icon {
		background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,215,0,0.95)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
	}

/* ==================== CONTAINERS ==================== */
.register-container {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem 1rem;
	background: linear-gradient(135deg, #0d0d1a, #1a1a2e);
	
}

.register-card {
	background: linear-gradient(135deg, rgba(22, 12, 12, 0.98) 0%, rgba(28, 14, 8, 0.98) 100%);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	border: 2px solid rgba(253, 207, 71, 0.2);
	overflow: hidden;
	width: 100%;
	max-width: 450px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
	animation: cardEntrance 0.6s ease;
	
}

@keyframes cardEntrance {
	from {
		opacity: 0;
		transform: translateY(30px) scale(0.95);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* ==================== HEADER ==================== */
.card-header-custom {
	text-align: center;
	padding: 2rem 1rem;
	border-bottom: 2px solid rgba(253, 207, 71, 0.2);
	background: linear-gradient(135deg, rgba(253, 207, 71, 0.08) 0%, rgba(0, 212, 255, 0.08) 100%);
}

.register-icon {
	font-size: 3rem;
	background: linear-gradient(135deg, #da4d4d, #f8a04d, #fdcf47);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 0.8rem;
}

.register-title {
	font-family: 'Orbitron', sans-serif;
	font-size: 2rem;
	font-weight: 900;
	background: linear-gradient(135deg, #da4d4d, #f8a04d, #fdcf47);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0;
}

.register-subtitle {
	color: #b8b8d1;
	font-size: 0.9rem;
}

/* ==================== FORM ==================== */
.card-body-custom {
	padding: 2rem;
}

.form-label-custom {
	color: #f8a04d;
	font-weight: 600;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0.4rem;
	display: block;
}

.form-control-custom {
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(253, 207, 71, 0.2);
	border-radius: 12px;
	color: #ffffff;
	padding: 0.9rem 1rem 0.9rem 2.8rem;
	font-size: 1rem;
	transition: all 0.3s ease;
	width: 100%;
}

	.form-control-custom:focus {
		background: rgba(255, 255, 255, 0.08);
		border-color: #f8a04d;
		box-shadow: 0 0 0 0.25rem rgba(248, 160, 77, 0.25);
		outline: none;
		transform: translateY(-2px);
	}

.input-icon {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: #fdcf47;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-group-custom:focus-within .input-icon {
	color: #f8a04d;
}

/* ==================== CHECKBOX ==================== */
.form-check-label {
	color: #b8b8d1;
	font-size: 0.9rem;
}

.form-check-input {
	border: 2px solid rgba(253, 207, 71, 0.3);
	background: transparent;
}

	.form-check-input:checked {
		background-color: #f8a04d;
		border-color: #f8a04d;
	}

/* ==================== BOTÃO ==================== */
.btn-register {
	width: 100%;
	padding: 1rem;
	background: linear-gradient(135deg, #da4d4d 0%, #f8a04d 50%, #fdcf47 100%);
	border: none;
	border-radius: 12px;
	color: #1a1a2e;
	font-weight: 700;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 1rem;
}

	.btn-register:hover {
		transform: translateY(-2px);
		box-shadow: 0 8px 25px rgba(248, 160, 77, 0.4);
	}

/* ==================== FOOTER ==================== */
.card-footer-custom {
	background: rgba(255, 255, 255, 0.02);
	border-top: 1px solid rgba(253, 207, 71, 0.1);
	padding: 1.5rem;
	text-align: center;
}

.footer-text {
	color: #b8b8d1;
	font-size: 0.9rem;
}

.login-link {
	color: #fdcf47;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

	.login-link:hover {
		color: #f8a04d;
		text-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
	}
.captcha-container {
	background: rgba(253, 207, 71, 0.05);
	border: 1px solid rgba(253, 207, 71, 0.2);
	border-radius: 12px;
	padding: 1rem;
	margin-bottom: 1.5rem;
	text-align: center;
}

.captcha-title {
	color: #fdcf47;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.captcha-challenge {
	font-family: 'Orbitron', monospace;
	font-size: 1.5rem;
	font-weight: bold;
	background: linear-gradient(135deg, #da4d4d, #f8a04d, #fdcf47);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	padding: 0.5rem;
	letter-spacing: 3px;
	user-select: none;
}

.captcha-input {
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(253, 207, 71, 0.2);
	border-radius: 8px;
	color: #ffffff;
	padding: 0.7rem 1rem;
	font-size: 1rem;
	width: 150px;
	text-align: center;
	margin: 0.5rem auto;
	transition: all 0.3s ease;
}

	.captcha-input:focus {
		border-color: #f8a04d;
		box-shadow: 0 0 0 0.2rem rgba(248, 160, 77, 0.25);
		outline: none;
	}

.captcha-error {
	color: #ff6b6b;
	font-size: 0.8rem;
	margin-top: 0.5rem;
	display: none;
}

.honeypot-field {
	position: absolute;
	left: -9999px;
	opacity: 0;
	height: 0;
	width: 0;
}

.timer-info {
	color: #b8b8d1;
	font-size: 0.8rem;
	margin-top: 0.5rem;
}
/* Register Page Styles */

.register-container {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem 1rem;
	position: relative;
}
	/* Background Effects */

	.register-container::before {
		content: '';
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(135deg, rgba(13,13,26,0.5), rgba(26,26,46,0.5));
		
		pointer-events: none;
		z-index: 0;
	}
/* Register Card */

.register-card {
	background: linear-gradient(135deg, rgba(22, 12, 12, 0.98) 0%, rgba(28, 14, 8, 0.98) 100%);
	backdrop-filter: blur(10px);
	border: 2px solid transparent;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	animation: cardEntrance 0.6s ease;
	z-index: 1;
}
/* CORREÇÃO: Use @keyframes em vez de @at-keyframe */

@keyframes cardEntrance {
	from {
		opacity: 0;
		transform: translateY(30px) scale(0.95);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}
/* Animated Border */

.register-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, transparent, #da4d4d, #f8a04d, #fdcf47, transparent);
	animation: borderSlide 3s linear infinite;
}

@keyframes borderSlide {
	to {
		left: 100%;
	}
}
/* Card Header */

.card-header-custom {
	background: linear-gradient(135deg, rgba(253, 207, 71, 0.2) 0%, rgba(248, 160, 77, 0.2) 100%);
	border-bottom: 2px solid rgba(253, 207, 71, 0.3);
	padding: 2.5rem 2rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

	.card-header-custom::after {
		content: '';
		position: absolute;
		top: -50%;
		left: -50%;
		width: 200%;
		height: 200%;
		background: radial-gradient(circle, rgba(253, 207, 71, 0.1) 0%, transparent 70%);
		animation: headerPulse 4s ease-in-out infinite;
	}

@keyframes headerPulse {
	0%, 100% {
		transform: scale(1);
		opacity: 0.5;
	}

	50% {
		transform: scale(1.2);
		opacity: 0.3;
	}
}

.register-icon {
	font-size: 4rem;
	background: linear-gradient(135deg, #da4d4d 0%, #f8a04d 50%, #fdcf47 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 1rem;
	animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
	0%, 100% {
		transform: translateY(0) rotate(0deg);
	}

	50% {
		transform: translateY(-10px) rotate(5deg);
	}
}

.register-title {
	font-family: 'Orbitron', sans-serif;
	font-size: 2.5rem;
	font-weight: 900;
	background: linear-gradient(135deg, #da4d4d 0%, #f8a04d 50%, #fdcf47 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin: 0;
	position: relative;
	z-index: 1;
}

.register-subtitle {
	color: #b8b8d1;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	letter-spacing: 1px;
}
/* Card Body */

.card-body-custom {
	padding: 2rem;
	position: relative;
}
/* Form Groups */

.form-group-custom {
	margin-bottom: 1.5rem;
	position: relative;
}

.form-label-custom {
	color: #f8a04d;
	font-weight: 600;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0.5rem;
	display: block;
}
/* Input Fields */

.form-control-custom {
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(253, 207, 71, 0.2);
	border-radius: 12px;
	color: #ffffff;
	padding: 0.9rem 1rem 0.9rem 3rem;
	font-size: 1rem;
	transition: all 0.3s ease;
	width: 100%;
	position: relative;
}

	.form-control-custom:focus {
		background: rgba(255, 255, 255, 0.08);
		border-color: #f8a04d;
		box-shadow: 0 0 0 0.25rem rgba(248, 160, 77, 0.25);
		outline: none;
		transform: translateY(-2px);
	}

	.form-control-custom::placeholder {
		color: rgba(255, 255, 255, 0.3);
		font-size: 0.9rem;
	}
/* Input Icons */

.input-icon {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: #fdcf47;
	font-size: 1.1rem;
	z-index: 1;
	transition: all 0.3s ease;
}

.form-group-custom:focus-within .input-icon {
	color: #f8a04d;
	transform: translateY(-50%) scale(1.1);
}
/* Password Strength Indicator */

.password-strength-container {
	margin-top: 0.5rem;
}

.password-strength-bar {
	height: 4px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 2px;
	overflow: hidden;
	position: relative;
}

.password-strength-fill {
	height: 100%;
	border-radius: 2px;
	transition: all 0.3s ease;
	position: absolute;
	top: 0;
	left: 0;
}
/* Validation Messages */

.field-validation-error {
	color: #ff6b6b;
	font-size: 0.8rem;
	margin-top: 0.3rem;
	display: flex;
	align-items: center;
	gap: 0.3rem;
	animation: errorShake 0.3s ease;
}

@keyframes errorShake {
	0%, 100% {
		transform: translateX(0);
	}

	25% {
		transform: translateX(-5px);
	}

	75% {
		transform: translateX(5px);
	}
}
/* Submit Button */

.btn-register {
	width: 100%;
	padding: 1rem;
	background: linear-gradient(135deg, #fdcf47 0%, #da4d4d 100%);
	border: none;
	border-radius: 12px;
	color: #1a1a2e;
	font-weight: 700;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	margin-top: 1.5rem;
}

	.btn-register::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		width: 0;
		height: 0;
		background: rgba(255, 255, 255, 0.4);
		border-radius: 50%;
		transform: translate(-50%, -50%);
		transition: width 0.5s ease, height 0.5s ease;
	}

	.btn-register:hover {
		transform: translateY(-3px);
		box-shadow: 0 15px 40px rgba(253, 207, 71, 0.4);
	}

		.btn-register:hover::before {
			width: 400px;
			height: 400px;
		}

	.btn-register:active {
		transform: translateY(-1px);
	}
/* Card Footer */

.card-footer-custom {
	background: rgba(255, 255, 255, 0.02);
	border-top: 1px solid rgba(253, 207, 71, 0.1);
	padding: 1.5rem;
	text-align: center;
}

.footer-text {
	color: #b8b8d1;
	font-size: 0.9rem;
}

.login-link {
	color: #fdcf47;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	display: inline-block;
}

	.login-link:hover {
		color: #f8a04d;
		text-shadow: 0 0 10px rgba(248, 160, 77, 0.5);
	}

	.login-link::after {
		content: '';
		position: absolute;
		bottom: -2px;
		left: 0;
		width: 0;
		height: 2px;
		background: #f8a04d;
		transition: width 0.3s ease;
	}

	.login-link:hover::after {
		width: 100%;
	}
/* Benefits Section */

.benefits-list {
	background: rgba(253, 207, 71, 0.05);
	border: 1px solid rgba(253, 207, 71, 0.2);
	border-radius: 12px;
	padding: 1rem;
	margin-top: 1.5rem;
}

.benefits-title {
	color: #fdcf47;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.benefit-item {
	color: #b8b8d1;
	font-size: 0.85rem;
	margin-bottom: 0.3rem;
	padding-left: 1.5rem;
	position: relative;
}

	.benefit-item::before {
		content: '✓';
		position: absolute;
		left: 0;
		color: #00ff00;
		font-weight: bold;
	}
/* Loading State */

.btn-register.loading {
	pointer-events: none;
	opacity: 0.7;
}

	.btn-register.loading::after {
		content: '';
		position: absolute;
		width: 20px;
		height: 20px;
		top: 50%;
		left: 50%;
		margin-left: -10px;
		margin-top: -10px;
		border: 2px solid #1a1a2e;
		border-radius: 50%;
		border-top-color: transparent;
		animation: spinner 0.8s linear infinite;
	}

@keyframes spinner {
	to {
		transform: rotate(360deg);
	}
}
/* Responsive Styles */

@media (max-width: 768px) {
	.register-container {
		padding: 1rem 0;
	}

	.register-title {
		font-size: 1.8rem;
		letter-spacing: 1px;
	}

	.register-icon {
		font-size: 3rem;
	}

	.card-header-custom {
		padding: 2rem 1rem;
	}

	.card-body-custom {
		padding: 1.5rem 1rem;
	}

	.form-control-custom {
		padding: 0.8rem 1rem 0.8rem 2.5rem;
		font-size: 0.95rem;
	}

	.input-icon {
		left: 0.8rem;
		font-size: 0.9rem;
	}

	.btn-register {
		padding: 0.9rem;
		font-size: 1rem;
		letter-spacing: 1px;
	}

	.benefits-list {
		padding: 0.8rem;
	}

	.benefit-item {
		font-size: 0.8rem;
	}
}

@media (max-width: 480px) {
	.register-title {
		font-size: 1.5rem;
	}

	.register-subtitle {
		font-size: 0.8rem;
	}

	.form-label-custom {
		font-size: 0.8rem;
	}

	.card-footer-custom {
		padding: 1rem;
	}
}

@media (min-width: 1400px) {
	.register-card {
		max-width: 450px;
	}
}

/* Estilo do CAPTCHA */
.captcha-container {
	background: rgba(253, 207, 71, 0.05);
	border: 1px solid rgba(253, 207, 71, 0.2);
	border-radius: 12px;
	padding: 1rem;
	margin-bottom: 1.5rem;
	text-align: center;
}

.captcha-title {
	color: #fdcf47;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.captcha-challenge {
	font-family: 'Orbitron', monospace;
	font-size: 1.5rem;
	font-weight: bold;
	background: linear-gradient(135deg, #da4d4d, #f8a04d, #fdcf47);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	padding: 0.5rem;
	letter-spacing: 3px;
	user-select: none;
}

.captcha-input {
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(253, 207, 71, 0.2);
	border-radius: 8px;
	color: #ffffff;
	padding: 0.7rem 1rem;
	font-size: 1rem;
	width: 150px;
	text-align: center;
	margin: 0.5rem auto;
	transition: all 0.3s ease;
}

	.captcha-input:focus {
		border-color: #f8a04d;
		box-shadow: 0 0 0 0.2rem rgba(248, 160, 77, 0.25);
		outline: none;
	}

.captcha-error {
	color: #ff6b6b;
	font-size: 0.8rem;
	margin-top: 0.5rem;
	display: none;
}

.honeypot-field {
	position: absolute;
	left: -9999px;
	opacity: 0;
	height: 0;
	width: 0;
}

.timer-info {
	color: #b8b8d1;
	font-size: 0.8rem;
	margin-top: 0.5rem;
}

/* Register Page Styles */
.register-container {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem 1rem;
	position: relative;
}

	/* Background Effects */
	.register-container::before {
		content: '';
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: radial-gradient(circle at 20% 50%, rgba(253, 207, 71, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(248, 160, 77, 0.1) 0%, transparent 50%);
		pointer-events: none;
		z-index: 0;
	}

/* Register Card */
.register-card {
	background: linear-gradient(135deg, rgba(22, 12, 12, 0.98) 0%, rgba(28, 14, 8, 0.98) 100%);
	backdrop-filter: blur(10px);
	border: 2px solid transparent;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	animation: cardEntrance 0.6s ease;
	z-index: 1;
}

/* CORREÇÃO: Use @keyframes em vez de @at-keyframe */
@keyframes cardEntrance {
	from {
		opacity: 0;
		transform: translateY(30px) scale(0.95);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* Animated Border */
.register-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, transparent, #da4d4d, #f8a04d, #fdcf47, transparent);
	animation: borderSlide 3s linear infinite;
}

@keyframes borderSlide {
	to {
		left: 100%;
	}
}

/* Card Header */
.card-header-custom {
	background: linear-gradient(135deg, rgba(253, 207, 71, 0.2) 0%, rgba(248, 160, 77, 0.2) 100%);
	border-bottom: 2px solid rgba(253, 207, 71, 0.3);
	padding: 2.5rem 2rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

	.card-header-custom::after {
		content: '';
		position: absolute;
		top: -50%;
		left: -50%;
		width: 200%;
		height: 200%;
		background: radial-gradient(circle, rgba(253, 207, 71, 0.1) 0%, transparent 70%);
		animation: headerPulse 4s ease-in-out infinite;
	}

@keyframes headerPulse {
	0%, 100% {
		transform: scale(1);
		opacity: 0.5;
	}

	50% {
		transform: scale(1.2);
		opacity: 0.3;
	}
}

.register-icon {
	font-size: 4rem;
	background: linear-gradient(135deg, #da4d4d 0%, #f8a04d 50%, #fdcf47 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 1rem;
	animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
	0%, 100% {
		transform: translateY(0) rotate(0deg);
	}

	50% {
		transform: translateY(-10px) rotate(5deg);
	}
}

.register-title {
	font-family: 'Orbitron', sans-serif;
	font-size: 2.5rem;
	font-weight: 900;
	background: linear-gradient(135deg, #da4d4d 0%, #f8a04d 50%, #fdcf47 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin: 0;
	position: relative;
	z-index: 1;
}

.register-subtitle {
	color: #b8b8d1;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	letter-spacing: 1px;
}

/* Card Body */
.card-body-custom {
	padding: 2rem;
	position: relative;
}

/* Form Groups */
.form-group-custom {
	margin-bottom: 1.5rem;
	position: relative;
}

.form-label-custom {
	color: #f8a04d;
	font-weight: 600;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0.5rem;
	display: block;
}

/* Input Fields */
.form-control-custom {
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(253, 207, 71, 0.2);
	border-radius: 12px;
	color: #ffffff;
	padding: 0.9rem 1rem 0.9rem 3rem;
	font-size: 1rem;
	transition: all 0.3s ease;
	width: 100%;
	position: relative;
}

	.form-control-custom:focus {
		background: rgba(255, 255, 255, 0.08);
		border-color: #f8a04d;
		box-shadow: 0 0 0 0.25rem rgba(248, 160, 77, 0.25);
		outline: none;
		transform: translateY(-2px);
	}

	.form-control-custom::placeholder {
		color: rgba(255, 255, 255, 0.3);
		font-size: 0.9rem;
	}

/* Input Icons */
.input-icon {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: #fdcf47;
	font-size: 1.1rem;
	z-index: 1;
	transition: all 0.3s ease;
}

.form-group-custom:focus-within .input-icon {
	color: #f8a04d;
	transform: translateY(-50%) scale(1.1);
}

/* Password Strength Indicator */
.password-strength-container {
	margin-top: 0.5rem;
}

.password-strength-bar {
	height: 4px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 2px;
	overflow: hidden;
	position: relative;
}

.password-strength-fill {
	height: 100%;
	border-radius: 2px;
	transition: all 0.3s ease;
	position: absolute;
	top: 0;
	left: 0;
}

/* Validation Messages */
.field-validation-error {
	color: #ff6b6b;
	font-size: 0.8rem;
	margin-top: 0.3rem;
	display: flex;
	align-items: center;
	gap: 0.3rem;
	animation: errorShake 0.3s ease;
}

@keyframes errorShake {
	0%, 100% {
		transform: translateX(0);
	}

	25% {
		transform: translateX(-5px);
	}

	75% {
		transform: translateX(5px);
	}
}

/* Submit Button */
.btn-register {
	width: 100%;
	padding: 1rem;
	background: linear-gradient(135deg, #fdcf47 0%, #da4d4d 100%);
	border: none;
	border-radius: 12px;
	color: #1a1a2e;
	font-weight: 700;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	margin-top: 1.5rem;
}

	.btn-register::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		width: 0;
		height: 0;
		background: rgba(255, 255, 255, 0.4);
		border-radius: 50%;
		transform: translate(-50%, -50%);
		transition: width 0.5s ease, height 0.5s ease;
	}

	.btn-register:hover {
		transform: translateY(-3px);
		box-shadow: 0 15px 40px rgba(253, 207, 71, 0.4);
	}

		.btn-register:hover::before {
			width: 400px;
			height: 400px;
		}

	.btn-register:active {
		transform: translateY(-1px);
	}

/* Card Footer */
.card-footer-custom {
	background: rgba(255, 255, 255, 0.02);
	border-top: 1px solid rgba(253, 207, 71, 0.1);
	padding: 1.5rem;
	text-align: center;
}

.footer-text {
	color: #b8b8d1;
	font-size: 0.9rem;
}

.login-link {
	color: #fdcf47;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	display: inline-block;
}

	.login-link:hover {
		color: #f8a04d;
		text-shadow: 0 0 10px rgba(248, 160, 77, 0.5);
	}

	.login-link::after {
		content: '';
		position: absolute;
		bottom: -2px;
		left: 0;
		width: 0;
		height: 2px;
		background: #f8a04d;
		transition: width 0.3s ease;
	}

	.login-link:hover::after {
		width: 100%;
	}

/* Benefits Section */
.benefits-list {
	background: rgba(253, 207, 71, 0.05);
	border: 1px solid rgba(253, 207, 71, 0.2);
	border-radius: 12px;
	padding: 1rem;
	margin-top: 1.5rem;
}

.benefits-title {
	color: #fdcf47;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.benefit-item {
	color: #b8b8d1;
	font-size: 0.85rem;
	margin-bottom: 0.3rem;
	padding-left: 1.5rem;
	position: relative;
}

	.benefit-item::before {
		content: '✓';
		position: absolute;
		left: 0;
		color: #00ff00;
		font-weight: bold;
	}

/* Loading State */
.btn-register.loading {
	pointer-events: none;
	opacity: 0.7;
}

	.btn-register.loading::after {
		content: '';
		position: absolute;
		width: 20px;
		height: 20px;
		top: 50%;
		left: 50%;
		margin-left: -10px;
		margin-top: -10px;
		border: 2px solid #1a1a2e;
		border-radius: 50%;
		border-top-color: transparent;
		animation: spinner 0.8s linear infinite;
	}

@keyframes spinner {
	to {
		transform: rotate(360deg);
	}
}

/* Responsive Styles */
@media (max-width: 768px) {
	.register-container {
		padding: 1rem 0;
	}

	.register-title {
		font-size: 1.8rem;
		letter-spacing: 1px;
	}

	.register-icon {
		font-size: 3rem;
	}

	.card-header-custom {
		padding: 2rem 1rem;
	}

	.card-body-custom {
		padding: 1.5rem 1rem;
	}

	.form-control-custom {
		padding: 0.8rem 1rem 0.8rem 2.5rem;
		font-size: 0.95rem;
	}

	.input-icon {
		left: 0.8rem;
		font-size: 0.9rem;
	}

	.btn-register {
		padding: 0.9rem;
		font-size: 1rem;
		letter-spacing: 1px;
	}

	.benefits-list {
		padding: 0.8rem;
	}

	.benefit-item {
		font-size: 0.8rem;
	}
}

@media (max-width: 480px) {
	.register-title {
		font-size: 1.5rem;
	}

	.register-subtitle {
		font-size: 0.8rem;
	}

	.form-label-custom {
		font-size: 0.8rem;
	}

	.card-footer-custom {
		padding: 1rem;
	}
}

@media (min-width: 1400px) {
	.register-card {
		max-width: 450px;
	}
}

/* === ESTILO UNIFICADO COM REGISTER === */
body {
	background: linear-gradient(135deg, #0a0f1a, #001f3f);
	color: #fff;
}

.account-card {
	background: linear-gradient(135deg, rgba(22,12,12,0.98), rgba(28,14,8,0.98));
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(253, 207, 71, 0.2);
}

.account-header {
	background: linear-gradient(135deg, #001a33, #003366);
	padding: 40px 20px;
	border-bottom: 2px solid gold;
}

.account-icon i {
	font-size: 3.5rem;
	color: gold;
	text-shadow: 0 0 10px gold;
}

.account-title {
	color: #f8a04d;
	font-weight: 700;
	margin-top: 15px;
}

.account-subtitle {
	font-size: 1.1rem;
	color: #ccc;
}

.account-section {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 15px;
}

	.account-section h5 {
		color: #fdcf47;
		border-bottom: 1px solid rgba(253, 207, 71, 0.2);
		padding-bottom: 10px;
		margin-bottom: 15px;
	}

.info-grid div, .currency-list div {
	display: flex;
	justify-content: space-between;
	padding: 6px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
	display: flex;
	justify-content: space-around;
	text-align: center;
}

.stat-item i {
	font-size: 1.8rem;
	margin-bottom: 5px;
}

.stat-item strong {
	display: block;
	font-size: 1.2rem;
	color: #00e6ff;
}

.vip-card {
	text-align: center;
	background: linear-gradient(145deg, #3a2f00, #6b5300);
	color: #fff;
	border: 1px solid gold;
	box-shadow: 0 0 10px gold;
}

.btn-outline-success, .btn-outline-warning, .btn-outline-primary, .btn-outline-danger, .btn-outline-info {
	border-radius: 10px;
	font-weight: 600;
	transition: all 0.3s ease;
}

	.btn-outline-success:hover {
		background: linear-gradient(90deg, #00ff88, #00cc66);
		color: #000;
	}

	.btn-outline-warning:hover {
		background: linear-gradient(90deg, #fdcf47, #ffb400);
		color: #000;
	}

	.btn-outline-primary:hover {
		background: linear-gradient(90deg, #00c8ff, #0077ff);
		color: #000;
	}

	.btn-outline-danger:hover {
		background: linear-gradient(90deg, #ff4e50, #ff0000);
		color: #fff;
	}

	.btn-outline-info:hover {
		background: linear-gradient(90deg, #f8a04d, #007bff);
		color: #000;
	}

/* ====== CONTAINER PRINCIPAL ====== */
.account-container {
	background: linear-gradient(145deg, #0a0f1a, #151f2b);
	min-height: 100vh;
	color: #e8e8e8;
	padding-top: 60px;
}

/* ====== CARD ====== */
.account-card {
	background: linear-gradient(135deg, rgba(22,12,12,0.98), rgba(28,14,8,0.98));
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(255, 215, 0, 0.15);
}

/* ====== HEADER ====== */
.account-header {
	padding: 40px 20px;
	border-bottom: 1px solid rgba(255, 215, 0, 0.15);
	background: linear-gradient(180deg, rgba(255, 215, 0, 0.06), transparent);
}

.account-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90px;
	height: 90px;
	margin: 0 auto 15px auto;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, #1a2639 0%, #0a0f1a 70%);
	border: 2px solid rgba(253, 207, 71, 0.4);
	box-shadow: inset 0 0 15px rgba(255, 215, 0, 0.15), 0 0 20px rgba(0, 0, 0, 0.6);
	position: relative;
}

	.account-icon i {
		font-size: 2.8rem;
		background: linear-gradient(145deg, #ffec85, #d4af37, #b8860b);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		text-shadow: 0 0 10px rgba(253, 207, 71, 0.6);
	}

.account-title {
	font-family: "Poppins", sans-serif;
	font-size: 2rem;
	color: #fdcf47;
	text-shadow: 0 0 10px rgba(253, 207, 71, 0.3);
}

.account-subtitle {
	color: #9bb0c9;
	font-size: 1rem;
	margin-bottom: 5px;
}

/* ====== BODY ====== */
.account-body {
	padding: 40px 30px;
}

.account-section {
	background: rgba(15, 22, 33, 0.9);
	border-radius: 12px;
	padding: 20px;
	border: 1px solid rgba(253, 207, 71, 0.1);
	box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.03);
	transition: all 0.3s ease;
}

	.account-section:hover {
		box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
		transform: translateY(-2px);
	}

	.account-section h5 {
		color: #fdcf47;
		font-weight: 600;
		margin-bottom: 15px;
	}

/* ====== GRIDS ====== */
.info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 20px;
}

	.info-grid span {
		display: block;
		color: #aaa;
		font-size: 0.9rem;
	}

	.info-grid strong {
		color: #eaeaea;
	}

.stats-grid {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 15px;
}

.stat-item {
	text-align: center;
	flex: 1;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 10px;
	padding: 15px 10px;
	transition: 0.3s;
}

	.stat-item:hover {
		background: rgba(253, 207, 71, 0.05);
	}

	.stat-item i {
		font-size: 1.6rem;
		margin-bottom: 8px;
	}

.currency-list div {
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

	.currency-list div:last-child {
		border: none;
	}

/* ====== VIP CARD ====== */
.vip-card {
	background: linear-gradient(145deg, rgba(253, 207, 71, 0.08), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(253, 207, 71, 0.3);
	color: #fff6d5;
	text-align: center;
	padding: 20px;
	border-radius: 10px;
}

	.vip-card h5 i {
		color: #fdcf47;
	}

/* ====== BOTÕES ====== */
.btn {
	font-weight: 500;
	border-radius: 10px;
}

.btn-outline-success:hover,
.btn-outline-primary:hover,
.btn-outline-warning:hover,
.btn-outline-info:hover,
.btn-outline-danger:hover {
	color: #000;
	background: linear-gradient(145deg, #fdcf47, #ffef8a);
	border-color: #fdcf47;
	transform: translateY(-2px);
	transition: all 0.3s ease;
}

/* ====== RESPONSIVIDADE ====== */
@media (max-width: 768px) {
	.info-grid {
		grid-template-columns: 1fr;
	}

	.account-body {
		padding: 25px 15px;
	}
}
.account-container {
	background: linear-gradient(145deg, #0a0f1a, #151f2b);
	min-height: 100vh;
	color: #e8e8e8;
	padding-top: 60px;
}

/* ====== CARD ====== */
.account-card {
	background: linear-gradient(135deg, rgba(22,12,12,0.98), rgba(28,14,8,0.98));
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(255, 215, 0, 0.15);
}

/* ====== HEADER ====== */
.account-header {
	padding: 40px 20px;
	border-bottom: 1px solid rgba(255, 215, 0, 0.15);
	background: linear-gradient(180deg, rgba(255, 215, 0, 0.06), transparent);
}

.account-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90px;
	height: 90px;
	margin: 0 auto 15px auto;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, #1a2639 0%, #0a0f1a 70%);
	border: 2px solid rgba(253, 207, 71, 0.4);
	box-shadow: inset 0 0 15px rgba(255, 215, 0, 0.15), 0 0 20px rgba(0, 0, 0, 0.6);
	position: relative;
}

	.account-icon i {
		font-size: 2.8rem;
		background: linear-gradient(145deg, #ffec85, #d4af37, #b8860b);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		text-shadow: 0 0 10px rgba(253, 207, 71, 0.6);
	}

.account-title {
	font-family: "Poppins", sans-serif;
	font-size: 2rem;
	color: #fdcf47;
	text-shadow: 0 0 10px rgba(253, 207, 71, 0.3);
}

.account-subtitle {
	color: #9bb0c9;
	font-size: 1rem;
	margin-bottom: 5px;
}

/* ====== BODY ====== */
.account-body {
	padding: 40px 30px;
}

.account-section {
	background: rgba(15, 22, 33, 0.9);
	border-radius: 12px;
	padding: 20px;
	border: 1px solid rgba(253, 207, 71, 0.1);
	box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.03);
	transition: all 0.3s ease;
}

	.account-section:hover {
		box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
		transform: translateY(-2px);
	}

	.account-section h5 {
		color: #fdcf47;
		font-weight: 600;
		margin-bottom: 15px;
	}

/* ====== GRIDS ====== */
.info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 20px;
}

	.info-grid span {
		display: block;
		color: #aaa;
		font-size: 0.9rem;
	}

	.info-grid strong {
		color: #eaeaea;
	}

.stats-grid {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 15px;
}

.stat-item {
	text-align: center;
	flex: 1;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 10px;
	padding: 15px 10px;
	transition: 0.3s;
}

	.stat-item:hover {
		background: rgba(253, 207, 71, 0.05);
	}

	.stat-item i {
		font-size: 1.6rem;
		margin-bottom: 8px;
	}

.currency-list div {
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

	.currency-list div:last-child {
		border: none;
	}

/* ====== VIP CARD ====== */
.vip-card {
	background: linear-gradient(145deg, rgba(253, 207, 71, 0.08), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(253, 207, 71, 0.3);
	color: #fff6d5;
	text-align: center;
	padding: 20px;
	border-radius: 10px;
}

	.vip-card h5 i {
		color: #fdcf47;
	}

/* ====== BOTÕES ====== */
.btn {
	font-weight: 500;
	border-radius: 10px;
}

.btn-outline-success:hover,
.btn-outline-primary:hover,
.btn-outline-warning:hover,
.btn-outline-info:hover,
.btn-outline-danger:hover {
	color: #000;
	background: linear-gradient(145deg, #fdcf47, #ffef8a);
	border-color: #fdcf47;
	transform: translateY(-2px);
	transition: all 0.3s ease;
}

/* ====== RESPONSIVIDADE ====== */
@media (max-width: 768px) {
	.info-grid {
		grid-template-columns: 1fr;
	}

	.account-body {
		padding: 25px 15px;
	}
}