@charset "UTF-8";
/* ========================================
   Auth Layout Styles - 장인의 손길
   ======================================== */
body.auth-layout {
	min-height: 100vh;
	background-color: #ffffff;
}
.auth-container {max-width: 1900px;margin: 0 auto;}

/* 헤더 스타일 */
header.border-bottom {
	border-bottom: 1px solid rgba(45, 134, 89, 0.1) !important;
	backdrop-filter: blur(10px);
	background-color: rgba(255,255,255,0.95) !important;
}

/* 로고 스타일 */
.auth-logo {
	color: #2d8659;
	text-shadow: 0 2px 4px rgba(45, 134, 89, 0.3);
	font-weight: 700;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}
.auth-logo:hover {
	color: #1f5f3f;
	text-shadow: 0 3px 6px rgba(45, 134, 89, 0.4);
	transform: scale(1.02);
}

.auth-logo-icon {
	color: #1f9d7a;
	filter: drop-shadow(0 2px 3px rgba(31, 157, 122, 0.3));
	transition: all 0.3s ease;
}

/* 로그인 폼 스타일 */
#loginForm .form-control {
	border-radius: 8px;
	padding: 0.75rem 1rem;
	border: 1.5px solid #e0e0e0;
}
#loginForm .form-control:focus {
	border-color: #8fd4b3;
	box-shadow: 0 0 0 0.25rem var(--auth-focus);
}

/* 브랜드 타이틀 */
.auth-brand-title {
	color: #2d8659;
	text-shadow: 0 2px 4px rgba(45, 134, 89, 0.3);
	font-weight: 700;
	letter-spacing: 0.5px;
}
.auth-brand-icon {
	color: #1f9d7a;
	filter: drop-shadow(0 2px 3px rgba(31, 157, 122, 0.3));
}

/* Auth 버튼 */
.btn-main {
	background-color: var(--copwok-header-color, #2d8659);
	border-color: var(--copwok-header-color, #2d8659);
	color: #ffffff;
	font-weight: 700;
	letter-spacing: 0.5px;
	box-shadow: 0 0.375rem 1.25rem rgba(0,0,0,0.3), 0 0.1875rem 0.625rem rgba(0,0,0,0.2);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-main:hover {
	background-color: #1f5f3f;
	border-color: #1f5f3f;
	color: #ffffff;
	box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.4), 0 0.25rem 0.75rem rgba(0,0,0,0.3);
	transform: translateY(-2px);
}
.btn-main:active {
	transform: scale(0.98);
}

/* 헤더 링크 */
header a {
	transition: all 0.3s ease;
	position: relative;
}
header a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -2px;
	left: 50%;
	background-color: #2d8659;
	transition: all 0.3s ease;
	transform: translateX(-50%);
}
header a:hover::after {width: 100%;}
header a:hover {
	text-decoration: none !important;
	color: #2d8659 !important;
}
header a i {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
header a:hover i {
	transform: scale(1.15) rotate(5deg);
	filter: drop-shadow(0 3px 5px rgba(31, 157, 122, 0.4));
}

/* 로그인 카드 */
.card.shadow-lg {
	box-shadow: 0 10px 40px rgba(0,0,0,0.1) !important;
	border-radius: 12px;
	overflow: hidden;
	backdrop-filter: blur(20px);
	background-color: rgba(255,255,255,0.98);
}

/* 푸터 스타일 - 한국식 회색 계열 */
footer {
	background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
	border-top: 1px solid #dee2e6 !important;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}
footer p {
	margin-bottom: 0.5rem;
	line-height: 1.6;
}
footer p:last-child {margin-bottom: 0;}
footer .text-muted {
	color: #6c757d !important;
	font-size: 0.875rem;
	font-weight: 400;
}
footer a {
	color: #495057;
	text-decoration: none;
	transition: all 0.2s ease;
	font-weight: 500;
}
footer a:hover {
	color: #2d8659;
	text-decoration: none;
}
