body {
	background: #f0f2f5;
	font-family: "Segoe UI", Roboto, sans-serif;
	margin: 0;
	padding: 0;
}

.jbp-login-wrapper {
	width: 100%;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.jbp-login-box {
	background: #ffffff;
	border: 1px solid #ddd;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
	padding: 40px;
	border-radius: 8px;
	width: 100%;
	max-width: 360px;
	box-sizing: border-box;
}

.jbp-login-logo {
	padding-bottom: 20px;
}

.jbp-login-logo img {
	height: 50px;
	margin: 0 auto;
}

.jbp-login-box h2 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 24px;
	color: #333;
}

.jbp-login-box label {
	display: block;
	margin-bottom: 6px;
	color: #333;
	font-weight: 500;
}

.jbp-login-box input[type="text"],
.jbp-login-box input[type="password"] {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	margin-bottom: 20px;
	box-sizing: border-box;
}

.jbp-notice-error {
	border-left: 4px solid #d63638;
	padding: 12px 14px;
	border-radius: 3px;
	margin-left: 0;
	margin-bottom: 15px;
	background-color: #fff;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .1);
	word-wrap: break-word;
}

.jbp-login-box input[type="submit"] {
	width: 100%;
	background: #FBBF01;
	background: radial-gradient(circle, rgba(251, 191, 1, 1) 0%, rgba(254, 222, 0, 1) 94%, rgba(247, 209, 0, 1) 100%);
	color: #000;
	padding: 10px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 600;
	transition: background-color 0.2s ease-in-out;
}

.jbp-login-box input[type="submit"]:hover {
	background-color: #135e96;
}

.jbp-login-box .login-remember {
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}

.jbp-login-box .login-remember input {
	margin-right: 8px;
}

.jbp-login-box .login-remember label {
	margin: 0;
	font-size: 14px;
	color: #555;
}

.jbp-login-box .login-links {
	margin-top: 15px;
	text-align: center;
}

.jbp-login-box .login-links a {
	color: #2271b1;
	text-decoration: none;
	font-size: 14px;
}

.jbp-login-box .login-links a:hover {
	text-decoration: underline;
}