.banner-container {
	width: 100%;
	max-width: 1200px;
	height: 400px;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 배경 패턴 */
.banner-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: 
		radial-gradient(circle at 20% 50%, rgba(255, 149, 0, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 40% 20%, rgba(0, 191, 165, 0.06) 0%, transparent 50%);
	pointer-events: none;
}

/* 움직이는 도형들 */
.floating-shapes {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
}

.shape {
	position: absolute;
	border-radius: 50%;
	opacity: 0.5;
	filter: blur(60px);
}

.shape-1 {
	width: 200px;
	height: 200px;
	background: linear-gradient(135deg, #ff9500 0%, #ff7a00 100%);
	top: -100px;
	left: -100px;
}

.shape-2 {
	width: 150px;
	height: 150px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	bottom: -75px;
	right: -75px;
}

/* 콘텐츠 */
.content2 {
	position: relative;
	z-index: 10;
	text-align: center;
}

.main-text {
	font-size: 36px;
	line-height: 140%;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 20px;
}

.sub-text {
	font-size: 20px;
	color: #666;
	margin-bottom: 50px;
}

.login-button-visual {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 22px 70px;
	background: #ff9500;
	color: white;
	font-size: 22px;
	font-weight: 600;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(255, 149, 0, 0.3);
	position: relative;
	cursor: pointer;
}

.arrow-down {
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 32px;
	color: #ff9500;
}

/* 점선 패턴 */
.dot-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: radial-gradient(circle, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
	background-size: 20px 20px;
	pointer-events: none;
	opacity: 0.4;
}