/* Frontend styles for vision-multi-layer-password-protector */

/* パスワードフォーム - 中央寄せ */
.vmlpp-password-form {
	max-width: 400px;
	margin: 40px auto;
	padding: 20px;
	background: #fff;
	border: 1px solid #c3c4c7;
	border-radius: 4px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}

/* エラーメッセージ */
.vmlpp-error-message {
	color: #d63638;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 20px;
	padding: 12px;
	background-color: #fcf0f1;
	border-left: 4px solid #d63638;
	border-radius: 0;
}

/* フォーム要素 */
.vmlpp-password-form p {
	margin-bottom: 20px;
}

.vmlpp-password-form p:last-child {
	margin-bottom: 0;
}

.vmlpp-password-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: #1d2327;
	font-size: 14px;
	line-height: 1.5;
}

.vmlpp-password-form input[type="password"] {
	width: 100%;
	padding: 6px 8px;
	border: 1px solid #8c8f94;
	border-radius: 3px;
	font-size: 14px;
	line-height: 2;
	color: #2c3338;
	background-color: #fff;
	box-sizing: border-box;
}

.vmlpp-password-form input[type="password"]:focus {
	border-color: #2271b1;
	box-shadow: 0 0 0 1px #2271b1;
	outline: 2px solid transparent;
}

/* WordPress標準ボタンスタイル */
.vmlpp-password-form .button {
	display: inline-block;
	padding: 6px 12px;
	font-size: 13px;
	line-height: 2.15384615;
	min-height: 30px;
	margin: 0;
	text-decoration: none;
	cursor: pointer;
	border-width: 1px;
	border-style: solid;
	border-radius: 3px;
	white-space: nowrap;
	box-sizing: border-box;
	background: #2271b1;
	border-color: #2271b1;
	color: #fff;
}

.vmlpp-password-form .button:hover,
.vmlpp-password-form .button:focus {
	background: #135e96;
	border-color: #135e96;
	color: #fff;
}

.vmlpp-password-form .button:active {
	background: #0a4b78;
	border-color: #0a4b78;
	color: #fff;
}

/* レスポンシブ対応 */
@media screen and (max-width: 782px) {
	.vmlpp-password-form {
		max-width: 100%;
		margin: 20px 10px;
		padding: 15px;
	}
}
