* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.container {
	width: 100%;
	max-width: 500px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	animation: slideUp 0.5s ease-out;
}

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

.header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 30px;
	text-align: center;
}

.header h1 {
	color: white;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 8px;
}

.header p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
}

.form-container {
	padding: 40px 30px;
}

.plan-selection {
	margin-bottom: 30px;
}

.plan-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
}

.plan-options {
	display: flex;
	gap: 15px;
	margin-bottom: 10px;
}

.plan-option {
	flex: 1;
	position: relative;
	cursor: pointer;
}

.plan-option input[type="radio"] {
	position: absolute;
	opacity: 0;
}

.plan-box {
	background: white;
	border: 2px solid #e0e0e0;
	border-radius: 15px;
	padding: 20px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.plan-option input[type="radio"]:checked ~ .plan-box {
	border-color: #667eea;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
	transform: scale(1.02);
}

.plan-option input[type="radio"]:checked ~ .plan-box::after {
	content: '✓';
	position: absolute;
	top: 10px;
	right: 10px;
	background: #667eea;
	color: white;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.plan-name {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
}

.plan-price {
	font-size: 24px;
	font-weight: 700;
	background: linear-gradient(135deg, #667eea, #764ba2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.plan-currency {
	font-size: 16px;
	font-weight: 500;
	color: #666;
}

.form-group {
	margin-bottom: 25px;
}

.form-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
}

.form-input {
	width: 100%;
	padding: 15px;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	font-size: 15px;
	transition: all 0.3s ease;
	background: white;
}

.form-input:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn {
	width: 100%;
	padding: 18px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

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

.info-box {
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
	border-left: 4px solid #667eea;
	padding: 15px;
	border-radius: 10px;
	margin-top: 25px;
}

.info-box p {
	color: #555;
	font-size: 14px;
	line-height: 1.6;
}

.security-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #e0e0e0;
}

.security-badge svg {
	width: 20px;
	height: 20px;
	fill: #4ade80;
}

.security-badge span {
	color: #666;
	font-size: 13px;
}

@media (max-width: 480px) {
	.plan-options {
		flex-direction: column;
	}
	
	.form-container {
		padding: 30px 20px;
	}
	
	.header h1 {
		font-size: 24px;
	}
}