/**
 * Onboarding Portal - Premium Styles
 */

:root {
	--op-primary: #2563eb;
	--op-primary-hover: #1d4ed8;
	--op-bg: #ffffff;
	--op-text: #1f2937;
	--op-text-light: #6b7280;
	--op-border: #e5e7eb;
	--op-success: #10b981;
	--op-radius: 12px;
	--op-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.op-form-wrapper {
	max-width: 600px;
	margin: 2rem auto;
	padding: 2.5rem;
	background: var(--op-bg);
	border-radius: var(--op-radius);
	box-shadow: var(--op-shadow);
	border: 1px solid var(--op-border);
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.op-progress-bar {
	height: 6px;
	background: #f3f4f6;
	border-radius: 3px;
	margin-bottom: 2.5rem;
	overflow: hidden;
}

.op-progress-fill {
	height: 100%;
	background: var(--op-primary);
	transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.op-step {
	display: none;
	animation: fadeIn 0.5s ease;
}

.op-step.active {
	display: block;
}

.op-step h2 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--op-text);
	margin-bottom: 0.5rem;
}

.op-step-desc {
	color: var(--op-text-light);
	margin-bottom: 2rem;
	font-size: 0.95rem;
}

.op-form-group {
	margin-bottom: 1.5rem;
}

.op-form-group label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--op-text);
	margin-bottom: 0.5rem;
}

.op-form-group input,
.op-form-group textarea,
.op-form-group select {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--op-border);
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.2s;
	background: #f9fafb;
}

.op-form-group input:focus,
.op-form-group textarea:focus,
.op-form-group select:focus {
	outline: none;
	border-color: var(--op-primary);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.op-form-group textarea {
	min-height: 120px;
	resize: vertical;
}

.op-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0.875rem 1.5rem;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	border: none;
}

.op-btn-primary {
	background: var(--op-primary);
	color: #fff;
}

.op-btn-primary:hover {
	background: var(--op-primary-hover);
	transform: translateY(-1px);
}

.op-btn-primary:active {
	transform: translateY(0);
}

.op-success-content {
	text-align: center;
	padding: 2rem 0;
}

.op-check-icon {
	width: 64px;
	height: 64px;
	background: #ecfdf5;
	color: var(--op-success);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin: 0 auto 1.5rem;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}
