@charset "UTF-8";
:root {
	--color-bg-primary: #f5f5f5;
	--color-bg-white: #ffffff;
	--color-text-secondary: #333333;
	--color-text-muted: #9da8be;
	--color-border: #9da8be;
	--color-button-primary: #1a2c50;
	--radius-md: 4px;
}

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

body {
	font-family: 'Roboto', sans-serif;
	background-color: var(--color-bg-primary);
	min-height: 100vh;
}

.container {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - 80px);
	padding: 20px 0;
}

.login-card {
	background-color: var(--color-bg-white);
	border-radius: var(--radius-md);
	padding: 40px 50px;
	width: 100%;
	max-width: 450px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.login-title {
	font-size: 28px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 30px;
}

.role-selection {
	display: flex;
	gap: 18px;
	margin-bottom: 25px;
}

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

.form-label {
	display: block;
	font-size: 16px;
	margin-bottom: 6px;
}

.form-input {
	border: none;
	border-bottom: 1px solid var(--color-border);
	padding: 8px 0;
	font-size: 18px;
	width: 100%;
	outline: none;
}

.password-wrapper {
	position: relative;
}

.password-toggle {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	opacity: 0.5;
	transition: 0.2s;
}

.password-toggle:hover {
	opacity: 1;
}

.password-toggle img {
	width: 22px;
	height: 22px;
}

.btn {
	width: 100%;
	padding: 12px;
	font-size: 18px;
	border: none;
	border-radius: var(--radius-md);
	cursor: pointer;
	margin-bottom: 15px;
}

.btn-primary {
	background-color: var(--color-button-primary);
	color: white;
}

.btn-secondary {
	background-color: white;
	border: 1px solid var(--color-border);
}

/* 소셜 로그인 공식 SVG 로고 적용 */
.social-login {
	display: flex;
	gap: 12px;
	margin-top: 15px;
}

.btn-social {
	flex: 1;
	padding: 10px;
	border-radius: 4px;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-weight: 600;
	font-size: 13px;
	transition: transform 0.1s;
}

.btn-social:active {
	transform: scale(0.96);
}

.btn-kakao {
	background-color: #FEE500;
	color: #000;
}

.btn-naver {
	background-color: #03C75A;
	color: #fff;
}

.kakao-icon {
	width: 18px;
	height: 18px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3c-4.97 0-9 3.185-9 7.115 0 2.558 1.712 4.8 4.348 6.148l-.845 3.097c-.102.373.121.754.495.845.132.032.27.022.395-.028l3.633-2.422c.322.033.65.055.974.055 4.97 0 9-3.185 9-7.115S16.97 3 12 3z'/%3E%3C/svg%3E") no-repeat center/contain;
}

.naver-icon {
	width: 14px;
	height: 14px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M16.273 12.845L7.376 0H0v24h7.727V11.155L16.624 24H24V0h-7.727v12.845z'/%3E%3C/svg%3E") no-repeat center/contain;
}

.find-links {
	text-align: center;
	margin-top: -10px;
	margin-bottom: 20px;
	font-size: 14px;
}

.find-links a {
	color: #888;
	text-decoration: none;
}

.find-links span {
	color: #ddd;
	margin: 0 10px;
}
