/* 로그인 전용 — 캡처 레퍼런스: 연회색 배경, 로고, 박스형 입력, 네이비 버튼 */

.app-login-body {
	min-width: 0 !important;
	margin: 0;
	font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", BlinkMacSystemFont,
		-apple-system, sans-serif;
	color: #000b49;
	background: #f8f8f8;
	-webkit-font-smoothing: antialiased;
}

.app-login-shell {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem 1.25rem;
	box-sizing: border-box;
}

.app-login-panel {
	width: 100%;
	max-width: 22rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.app-login-logo {
	display: block;
	height: auto;
	width: 11rem;
	max-width: 100%;
	object-fit: contain;
	margin-bottom: 2rem;
	flex-shrink: 0;
}

.app-login-heading {
	margin: 0 0 0.35rem;
	font-size: 1.125rem;
	font-weight: 800;
	color: #000b49;
	letter-spacing: -0.03em;
}

.app-login-lead {
	margin: 0 0 1.75rem;
	font-size: 0.8125rem;
	font-weight: 500;
	color: #888;
	line-height: 1.45;
}

.app-login-form {
	width: 100%;
	text-align: left;
}

.app-login-field {
	margin: 0;
}

.app-login-field + .app-login-field {
	margin-top: 0.25rem;
}

.app-login-input {
	box-sizing: border-box;
	display: block;
	width: 100%;
	padding: 0.85rem 1rem;
	font-size: 0.9375rem;
	font-weight: 500;
	color: #000b49;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 2px;
	outline: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.app-login-input::placeholder {
	color: #bbb;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.app-login-input:hover {
	border-color: #b3b3b3;
}

.app-login-input:focus {
	border-color: #000b49;
	box-shadow: 0 0 0 1px #000b49;
}

.app-login-submit {
	box-sizing: border-box;
	display: block;
	width: 100%;
	margin-top: 1.25rem;
	padding: 0.95rem 1rem;
	font-size: 0.9375rem;
	font-weight: 700;
	font-family: inherit;
	color: #fff;
	background: #000b49;
	border: none;
	border-radius: 2px;
	cursor: pointer;
	transition: background 0.15s ease, opacity 0.15s ease;
}

.app-login-submit:hover {
	background: #00083a;
}

.app-login-submit:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

.app-login-error {
	min-height: 1.35rem;
	margin: 0.75rem 0 0;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #c62828;
	text-align: center;
}

.app-login-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
