/* ============================================================
 * csLogin.css
 * ============================================================ */

.login-section {
	padding: 46px 0 90px;
	background: linear-gradient(to bottom, #f6f8fc 0%, #f0f4ff 100%);
}

.login-eyebrow {
	font-size: 14px;
	font-weight: 800;
	color: #2563eb;
	letter-spacing: 0.1em;
	margin-bottom: 8px;
}

.login-section-title {
	font-size: 36px;
	font-weight: 800;
	color: #111827;
	margin-bottom: 8px;
}

.login-section-sub {
	font-size: 15px;
	color: #6b7280;
	margin-bottom: 48px;
}

/* カード共通 */
.login-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 20px;
	box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
	padding: 40px 36px 36px;
	height: 100%;
}

.login-card-title {
	font-size: 22px;
	font-weight: 800;
	color: #111827;
	margin-bottom: 28px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.login-card-title i {
	color: #2563eb;
	font-size: 20px;
}

/* フォーム */
.login-input-wrap {
	position: relative;
	margin-bottom: 14px;
}

.login-input-wrap i {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #9ca3af;
	font-size: 16px;
	pointer-events: none;
}

.login-input {
	width: 100%;
	height: 52px;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	padding: 0 44px 0 44px;
	font-size: 15px;
	color: #111827;
	background: #f9fafb;
	transition: border-color 0.18s ease;
}

.login-input:focus {
	outline: none;
	border-color: #2563eb;
	background: #ffffff;
}

.login-input::placeholder {
	color: #9ca3af;
}

.toggle-pw-icon {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #9ca3af;
	font-size: 16px;
	cursor: pointer;
}

/* ボタン */
.btn-login {
	width: 100%;
	height: 52px;
	border: none;
	border-radius: 12px;
	background: #2563eb;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	margin-top: 8px;
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.22);
	transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.btn-login:hover {
	background: #1d4ed8;
	box-shadow: 0 12px 26px rgba(37, 99, 235, 0.32);
	transform: translateY(-1px);
}

.btn-regist {
	width: 100%;
	height: 52px;
	border: none;
	border-radius: 12px;
	background: #ff7a00;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	box-shadow: 0 8px 20px rgba(255, 122, 0, 0.22);
	transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.btn-regist:hover {
	background: #e56c00;
	box-shadow: 0 12px 26px rgba(255, 122, 0, 0.32);
	transform: translateY(-1px);
}

.pw-forgot {
	display: block;
	text-align: center;
	margin-top: 18px;
	font-size: 13px;
	color: #6b7280;
}

.pw-forgot a {
	color: #2563eb;
	font-weight: 700;
}

/* 区切り線 */
.login-divider {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 28px 0;
	color: #9ca3af;
	font-size: 13px;
}

.login-divider::before,
.login-divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: #e5e7eb;
}

/* 会員登録カード */
.regist-benefit-list {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
}

.regist-benefit-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #374151;
	padding: 8px 0;
	border-bottom: 1px solid #f3f4f6;
}

.regist-benefit-list li:last-child {
	border-bottom: none;
}

.regist-benefit-list i {
	color: #2563eb;
	font-size: 16px;
	flex-shrink: 0;
}

.alert-box {
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 12px;
	padding: 16px 20px;
	font-size: 14px;
	color: #b91c1c;
	display: flex;
	align-items: center;
	gap: 10px;
}

.alert-box i {
	font-size: 18px;
	flex-shrink: 0;
}

@media (max-width: 767.98px) {
	.login-section {
		padding: 40px 0 56px;
	}

	.login-section-title {
		font-size: 26px;
	}

	.login-card {
		padding: 28px 20px 24px;
		margin-bottom: 20px;
	}
}
