:root {
	--wyd-red: #F32735;
	--wyd-blue: #0047BB;
	--wyd-yellow: #FBE126;
	--wyd-black: #000000;
	--wyd-light: #f6f8ff;
}

html,
body {
	height: 100%;
}

body {
	margin: 0;
	font-family: "IBMPlexSansKR-Regular", "¸¼Àº °íµñ", Malgun Gothic, Arial, sans-serif;
	background:
		radial-gradient(circle at 15% 15%, rgba(251,225,38,0.45) 0, rgba(251,225,38,0.15) 22%, transparent 42%),
		radial-gradient(circle at 85% 20%, rgba(243,39,53,0.18) 0, transparent 38%),
		linear-gradient(135deg, #ffffff 0%, #eef4ff 48%, #ffffff 100%);
	color: #111111;
}

a {
	text-decoration: none;
}

.login-page {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px 20px;
	position: relative;
	overflow: hidden;
}

.login-page::before {
	content: "";
	position: absolute;
	width: 540px;
	height: 540px;
	border-radius: 50%;
	background: var(--wyd-blue);
	opacity: 0.08;
	left: -240px;
	bottom: -260px;
}

.login-page::after {
	content: "";
	position: absolute;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: var(--wyd-red);
	opacity: 0.08;
	right: -120px;
	top: -120px;
}

.login-box {
	width: 100%;
	max-width: 980px;
	position: relative;
	z-index: 2;
}

.login-card {
	border: 0;
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 0 28px 70px rgba(0, 45, 120, 0.18);
	background: #ffffff;
}

.brand-area {
	min-height: 560px;
	padding: 54px 44px;
	background:
		linear-gradient(145deg, rgba(0,71,187,0.98), rgba(0,46,130,0.98)),
		var(--wyd-blue);
	color: #ffffff;
	position: relative;
	overflow: hidden;
}

.brand-area::before {
	content: "";
	position: absolute;
	width: 260px;
	height: 260px;
	background: var(--wyd-yellow);
	border-radius: 50%;
	right: -90px;
	top: -70px;
	opacity: 0.95;
}

.brand-area::after {
	content: "";
	position: absolute;
	width: 230px;
	height: 230px;
	background: var(--wyd-red);
	border-radius: 50%;
	left: -80px;
	bottom: -90px;
	opacity: 0.9;
}

.brand-inner {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.logo-box {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	border-radius: 24px;
	padding: 18px 22px;
	box-shadow: 0 18px 35px rgba(0,0,0,0.16);
	max-width: 280px;
}

.logo-box img {
	max-width: 100%;
	height: auto;
	display: block;
}

.brand-title {
	margin-top: 52px;
}

.brand-title .badge-label {
	display: inline-block;
	background: var(--wyd-yellow);
	color: #111111;
	font-weight: 900;
	font-size: 0.86rem;
	padding: 8px 14px;
	border-radius: 999px;
	margin-bottom: 18px;
	letter-spacing: -0.3px;
}

.brand-title h1 {
	font-size: 2.15rem;
	font-weight: 900;
	line-height: 1.28;
	letter-spacing: -1.4px;
	margin: 0;
}

.brand-title p {
	margin: 18px 0 0;
	color: rgba(255,255,255,0.84);
	font-size: 1rem;
	line-height: 1.7;
	letter-spacing: -0.4px;
}

.brand-bottom {
	font-size: 0.9rem;
	color: rgba(255,255,255,0.78);
}

.form-area {
	padding: 58px 48px;
	background: #ffffff;
}

.mobile-logo {
	display: none;
	text-align: center;
	margin-bottom: 28px;
}

.mobile-logo img {
	max-width: 220px;
	height: auto;
}

.form-title {
	margin-bottom: 30px;
}

.form-title .small-text {
	color: var(--wyd-red);
	font-size: 0.88rem;
	font-weight: 900;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
}

.form-title h2 {
	margin: 0;
	font-size: 1.75rem;
	font-weight: 900;
	color: #111111;
	letter-spacing: -1px;
}

.form-title p {
	margin: 10px 0 0;
	color: #666666;
	font-size: 0.94rem;
	letter-spacing: -0.4px;
}

.form-label {
	font-size: 0.95rem;
	font-weight: 800;
	color: #222222;
	margin-bottom: 8px;
}

.form-control {
	height: 52px;
	border-radius: 15px;
	border: 1px solid #d9e1f2;
	font-size: 0.96rem;
	padding-left: 16px;
}

.form-control:focus {
	border-color: var(--wyd-blue);
	box-shadow: 0 0 0 0.22rem rgba(0,71,187,0.13);
}

.password-group .form-control {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.password-group .btn {
	min-width: 84px;
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
	font-weight: 800;
	border-color: #d9e1f2;
}

.btn-login {
	height: 54px;
	border-radius: 16px;
	background: var(--wyd-blue);
	border-color: var(--wyd-blue);
	font-weight: 900;
	font-size: 1rem;
	letter-spacing: -0.4px;
	box-shadow: 0 12px 24px rgba(0,71,187,0.24);
}

.btn-login:hover,
.btn-login:focus {
	background: #003a99;
	border-color: #003a99;
}

.notice-box {
	margin-top: 22px;
	padding: 15px 16px;
	border-radius: 16px;
	background: #fff9d8;
	border: 1px solid rgba(251,225,38,0.7);
	font-size: 0.86rem;
	color: #4d4300;
	line-height: 1.6;
	letter-spacing: -0.3px;
}

.alert {
	border-radius: 15px;
	font-size: 0.9rem;
}

.login-footer {
	margin-top: 26px;
	text-align: center;
	font-size: 0.82rem;
	color: #888888;
}

.color-line {
	height: 6px;
	display: flex;
}

.color-line span {
	display: block;
	flex: 1;
}

.color-line .c1 { background: var(--wyd-blue); }
.color-line .c2 { background: var(--wyd-red); }
.color-line .c3 { background: var(--wyd-yellow); }

@media (max-width: 991.98px) {
	.brand-area {
		display: none;
	}

	.form-area {
		padding: 38px 28px;
	}

	.mobile-logo {
		display: block;
	}

	.login-card {
		max-width: 480px;
		margin: 0 auto;
		border-radius: 24px;
	}
}

@media (max-width: 575.98px) {
	.login-page {
		padding: 18px 14px;
		align-items: flex-start;
	}

	.login-card {
		border-radius: 22px;
	}

	.form-area {
		padding: 32px 22px;
	}

	.form-title h2 {
		font-size: 1.45rem;
	}

	.form-title p {
		font-size: 0.88rem;
	}

	.form-control {
		height: 50px;
	}

	.password-group .btn {
		min-width: 74px;
		font-size: 0.88rem;
	}
}