.cv-signup-page {
	max-width: 500px;
	margin: 4rem auto;
	padding: 0 2rem;
}

.cv-signup-container {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	padding: 3rem;
}

.cv-signup-container h1 {
	text-align: center;
	margin-bottom: 2rem;
	color: #1F2937;
}

.cv-selected-tier {
	background: #F0F9FF;
	border: 2px solid #3B82F6;
	border-radius: 8px;
	padding: 1rem;
	margin-bottom: 2rem;
	text-align: center;
}

.cv-tier-price {
	font-size: 1.5rem;
	font-weight: 700;
	color: #3B82F6;
	margin-top: 0.5rem;
}

.cv-errors {
	background: #FEE2E2;
	border: 1px solid #EF4444;
	border-radius: 6px;
	padding: 1rem;
	margin-bottom: 2rem;
}

.cv-errors p {
	margin: 0.5rem 0;
	color: #991B1B;
}

.cv-signup-form p {
	margin-bottom: 1.5rem;
}

.cv-signup-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #374151;
}

.cv-signup-form input[type="text"],
.cv-signup-form input[type="email"],
.cv-signup-form input[type="password"] {
	width: 100%;
	padding: 0.75rem;
	border: 2px solid #E5E7EB;
	border-radius: 6px;
	font-size: 1rem;
	box-sizing: border-box;
}

.cv-signup-form input:focus {
	outline: none;
	border-color: #4F46E5;
}

.cv-signup-form .description {
	display: block;
	font-size: 0.875rem;
	color: #6B7280;
	margin-top: 0.25rem;
}

.cv-button {
	display: inline-block;
	padding: 0.75rem 2rem;
	border: none;
	border-radius: 6px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
}

.cv-button-primary {
	background: #4F46E5;
	color: white;
	width: 100%;
}

.cv-button-primary:hover {
	background: #4338CA;
}

.cv-login-link {
	text-align: center;
	margin-top: 2rem;
	color: #6B7280;
}

.cv-login-link a {
	color: #4F46E5;
	text-decoration: none;
	font-weight: 600;
}

/* Checkout page */
.cv-checkout-page {
	max-width: 600px;
	margin: 4rem auto;
	padding: 0 2rem;
}

.cv-checkout-container {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	padding: 3rem;
}

.cv-checkout-summary {
	border: 2px solid #E5E7EB;
	border-radius: 8px;
	padding: 2rem;
	margin: 2rem 0;
}

.cv-order-item {
	display: flex;
	justify-content: space-between;
	margin: 1rem 0;
	padding: 1rem;
	background: #F9FAFB;
	border-radius: 6px;
}

.cv-item-name {
	font-weight: 600;
}

.cv-item-price {
	font-size: 1.25rem;
	font-weight: 700;
	color: #4F46E5;
}

.cv-checkout-notice {
	background: #FEF3C7;
	border: 2px solid #F59E0B;
	border-radius: 8px;
	padding: 1.5rem;
	margin-top: 2rem;
}

.cv-stripe-info {
	margin-top: 2rem;
	padding: 1.5rem;
	background: #F0F9FF;
	border-radius: 8px;
}

.cv-stripe-info ol {
	margin-left: 1.5rem;
}

.cv-stripe-info li {
	margin: 0.5rem 0;
}

/* Pricing table shortcode */
.cv-pricing-table {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.cv-pricing-card {
	background: white;
	border: 2px solid #E5E7EB;
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	transition: transform 0.3s, box-shadow 0.3s;
}

.cv-pricing-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 32px rgba(0,0,0,0.1);
	border-color: #4F46E5;
}

.cv-pricing-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.cv-price {
	margin: 1.5rem 0;
}

.cv-amount {
	font-size: 2.5rem;
	font-weight: 700;
	color: #4F46E5;
}

.cv-period {
	color: #6B7280;
}

.cv-description {
	color: #6B7280;
	margin: 1rem 0;
}

.cv-features {
	list-style: none;
	padding: 0;
	margin: 2rem 0;
	text-align: left;
}

.cv-features li {
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
}

.cv-features li:before {
	content: "\2713";
	position: absolute;
	left: 0;
	color: #10B981;
	font-weight: bold;
}
