:root {
	--accent: #d97706;
	--accent-light: #f59e0b;
	--accent-dark: #b45309;
}

body {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.auth-container {
	background: white;
	overflow: hidden;
	max-width: 400px;
	width: 100%;
	margin: 2rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
	.auth-container {
		box-shadow: none;
	}
}

.auth-header {
	color: var(--accent-dark);
	padding: 2rem;
	text-align: center;
}

.auth-body {
	padding: 0.5rem;
}

.btn-wakanda {
	background-color: var(--accent);
	border-color: var(--accent);
	color: white;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
}

.btn-wakanda:hover {
	background-color: var(--accent-dark);
	border-color: var(--accent-dark);
	color: white;
}

.btn-social {
	border: 1px solid #e5e7eb;
	color: #374151;
	padding: 0.75rem 1.5rem;
	font-weight: 500;
	transition: all 0.2s;
}

.btn-social:hover {
	background-color: #f9fafb;
	border-color: var(--accent-light);
	color: #374151;
}

.form-control {
	padding: 0.75rem 1rem;
	border: 1px solid #d1d5db;
	border-radius: 0.5rem;
	transition: all 0.2s;
}

.form-control:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 0.2rem rgba(217, 119, 6, 0.25);
}

.form-control.is-valid {
	border-color: #10b981;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2310b981' d='m2.3 6.73.94-.94 1.44 1.44L7.4 4.5l.94.94L4.66 9.2z'/%3e%3c/svg%3e");
}

.form-control.is-invalid {
	border-color: #ef4444;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ef4444'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.5 5.5 1 1m0-1-1 1'/%3e%3c/svg%3e");
}

.form-label {
	font-weight: 500;
	color: #374151;
	margin-bottom: 0.5rem;
}

.divider {
	position: relative;
	text-align: center;
	margin: 1.5rem 0;
}

.divider::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	background: #e5e7eb;
}

.divider span {
	background: white;
	padding: 0 1rem;
	color: #6b7280;
	font-size: 0.875rem;
}

.link-wakanda {
	color: var(--accent);
	text-decoration: none;
	font-weight: 500;
}

.link-wakanda:hover {
	color: var(--accent-dark);
	text-decoration: underline;
}

.alert {
	border-radius: 0.5rem;
	border: none;
	padding: 1rem;
}

.brand-icon {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.form-check-input:checked {
	background-color: var(--accent);
	border-color: var(--accent);
}

.form-check-input:focus {
	box-shadow: 0 0 0 0.2rem rgba(217, 119, 6, 0.25);
}

.password-strength {
	margin-top: 0.5rem;
}

.strength-bar {
	height: 4px;
	border-radius: 2px;
	background-color: #e5e7eb;
	overflow: hidden;
}

.strength-fill {
	height: 100%;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.strength-weak {
	background-color: #ef4444;
	width: 25%;
}

.strength-fair {
	background-color: #f59e0b;
	width: 50%;
}

.strength-good {
	background-color: #10b981;
	width: 75%;
}

.strength-strong {
	background-color: #059669;
	width: 100%;
}

.requirements {
	font-size: 0.875rem;
	margin-top: 0.5rem;
}

.requirement {
	display: flex;
	align-items: center;
	margin-bottom: 0.25rem;
	color: #6b7280;
}

.requirement.met {
	color: #10b981;
}

.requirement i {
	width: 16px;
	margin-right: 0.5rem;
}

.valid-feedback {
	color: #10b981;
	font-size: 0.875rem;
	margin-top: 0.25rem;
}

.invalid-feedback {
	color: #ef4444;
	font-size: 0.875rem;
	margin-top: 0.25rem;
}

.terms-box {
	background: #f8f9fa;
	border: 1px solid #e5e7eb;
	border-radius: 0.5rem;
	padding: 1rem;
	margin: 1rem 0;
}

.progress-indicator {
	background: #f3f4f6;
	border-radius: 0.5rem;
	padding: 0.75rem;
	margin-bottom: 1rem;
}

.progress-item {
	display: flex;
	align-items: center;
	font-size: 0.875rem;
	margin-bottom: 0.25rem;
}

.progress-item:last-child {
	margin-bottom: 0;
}

.progress-item i {
	width: 16px;
	margin-right: 0.5rem;
}

.progress-item.completed {
	color: #10b981;
}

.progress-item.pending {
	color: #6b7280;
}
