/* Veymaro Client Portal - Premium UI Styles */
.vcp-wrapper {
	max-width: 500px;
	margin: 0 auto;
	font-family: system-ui, -apple-system, sans-serif;
}

.vcp-portal-wrap {
	max-width: 1000px;
	margin: 0 auto;
	font-family: system-ui, -apple-system, sans-serif;
}

.vcp-card {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vcp-card:hover {
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.vcp-icon-wrap {
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	background: #f0f7ff;
	border: 1px solid #e0efff;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2563eb;
}

.vcp-title {
	font-size: 24px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 10px 0;
	letter-spacing: -0.5px;
}

.vcp-desc {
	color: #64748b;
	font-size: 15px;
	margin: 0 0 30px 0;
	line-height: 1.5;
}

.vcp-form-group {
	margin-bottom: 20px;
	text-align: left;
}

.vcp-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #334155;
	margin-bottom: 8px;
}

.vcp-input {
	width: 100%;
	padding: 16px;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	background: #f8fafc;
	font-size: 16px;
	color: #0f172a;
	transition: all 0.2s;
	box-sizing: border-box;
}

.vcp-input:focus {
	outline: none;
	border-color: #2563eb;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.vcp-code-text {
	text-align: center;
	font-size: 18px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.vcp-btn {
	width: 100%;
	padding: 16px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.2s;
	border: none;
}

.vcp-btn-primary {
	background: #0f172a;
	color: #fff;
}

.vcp-btn-primary:hover {
	background: #2563eb;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.vcp-btn-outline {
	background: transparent;
	border: 1px solid #cbd5e1;
	color: #475569;
}

.vcp-btn-outline:hover {
	background: #f1f5f9;
	color: #0f172a;
}

.vcp-btn-success {
	background: #10b981;
	color: white;
}
.vcp-btn-success:hover {
	background: #059669;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.vcp-message {
	padding: 12px;
	border-radius: 8px;
	margin-bottom: 20px;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
}

.vcp-error {
	background: #fef2f2;
	color: #ef4444;
	border: 1px solid #fecaca;
}

.vcp-success {
	background: #f0fdf4;
	color: #10b981;
	border: 1px solid #bbf7d0;
}

/* Portal Grid */
.vcp-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	margin-top: 30px;
}

.vcp-project-card {
	text-align: left;
	padding: 30px;
}

.vcp-status-badge {
	display: inline-block;
	padding: 6px 12px;
	background: #e0efff;
	color: #2563eb;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 20px;
}

.vcp-project-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* Modal */
.vcp-modal {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.6);
	backdrop-filter: blur(8px);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vcp-modal-content {
	width: 100%;
	max-width: 500px;
	position: relative;
}

.vcp-close {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 24px;
	cursor: pointer;
	color: #64748b;
}
