.login-section {
	min-height: calc(100vh - 200px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4em 0;
	background: linear-gradient(135deg, #f0fdf4 0%, #fce7f3 50%, #fffbeb 100%);
}

.login-card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	padding: 3em;
	width: 100%;
	max-width: 480px;
	margin: 0 auto;
}

.login-header {
	text-align: center;
	margin-bottom: 2em;
}

.login-header .logo {
	margin-bottom: 1.5em;
}

.login-header .logo img {
	max-width: 200px;
	height: auto;
}

.login-header h1 {
	font-size: 1.8em;
	font-weight: 600;
	color: #333;
	margin: 0;
}

.login-form .form-group {
	margin-bottom: 1.5em;
}

.login-form label {
	display: block;
	font-size: 1.1em;
	font-weight: 600;
	color: #444;
	margin-bottom: 0.6em;
}

.login-form input[type="email"],
.login-form input[type="password"] {
	width: 100%;
	max-width: none;
	padding: 1.2em 1.2em;
	font-size: 1.15em;
	border: 3px solid #d0d0d0;
	border-radius: 12px;
	background: #fafafa;
	transition: all 0.3s ease;
	box-sizing: border-box;
	line-height: 1.4;
}

.login-form input[type="email"]:focus,
.login-form input[type="password"]:focus {
	outline: none;
	border-color: #7dd3b5;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(125, 211, 181, 0.2);
}

.login-form input[type="email"]::placeholder,
.login-form input[type="password"]::placeholder {
	color: #999;
	font-size: 0.95em;
}

.form-options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5em;
	font-size: 1em;
}

.remember-me {
	display: flex;
	align-items: center;
	gap: 0.6em;
	cursor: pointer;
}

.remember-me input[type="checkbox"] {
	width: 22px;
	height: 22px;
	accent-color: #7dd3b5;
	cursor: pointer;
}

.forgot-link {
	display: block;
	text-align: right;
	color: #7dd3b5;
	text-decoration: none;
	transition: color 0.3s ease;
	margin-top: 0.8em;
	font-size: 0.95em;
}

.forgot-link:hover {
	color: #5cb89a;
	text-decoration: underline;
}

#wp-submit {
	width: 100%;
	max-width: none;
	height: auto;
	padding: 1.2em;
	font-size: 1.25em;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(135deg, #7dd3b5 0%, #5cb89a 100%);
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(125, 211, 181, 0.4);
	text-align: center;
}

.login-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(125, 211, 181, 0.5);
}

.login-btn:active {
	transform: translateY(0);
}

.login-divider {
	display: flex;
	align-items: center;
	margin: 2em 0;
	color: #999;
	font-size: 0.9em;
}

.login-divider::before,
.login-divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: #e0e0e0;
}

.login-divider span {
	padding: 0 1em;
}

.social-login {
	margin-bottom: 2em;
}

.social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.8em;
	width: 100%;
	padding: 1.1em;
	font-size: 1.1em;
	font-weight: 500;
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.3s ease;
}

.social-btn.line {
	color: #fff;
	background: #06c755;
	box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
}

.social-btn.line:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
}

.social-btn img {
	width: 24px;
	height: 24px;
	filter: brightness(0) invert(1);
}

.register-link {
	text-align: center;
	font-size: 1.05em;
	color: #555;
}

.register-link p {
	margin-top: 20px;
}

.register-link a {
	color: #f472b6;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.3s ease;
}

.register-link a:hover {
	color: #db2777;
	text-decoration: underline;
}

.login-notice {
	background: #f0fbf1;
	border: 1px solid #dffeca;
	border-radius: 10px;
	padding: 1.2em;
	margin-bottom: 1.5em;
	color: #69dc26;
	font-size: 1em;
	font-weight: 500;
}

.login-error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 10px;
	padding: 1.2em;
	margin-bottom: 1.5em;
	color: #dc2626;
	font-size: 1em;
	font-weight: 500;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
	.login-section {
		padding: 2em 1em;
	}

	.login-card {
		padding: 2em 1.5em;
	}

	.login-header h1 {
		font-size: 1.5em;
	}

	.form-options {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.8em;
	}
}
