:root{
	--mja-primary:#0b74ff;
	--mja-primary-2:#075bd8;
	--mja-primary-soft:#eaf3ff;
	--mja-ink:#111827;
	--mja-muted:#6b7280;
	--mja-border:#dbe5f3;
	--mja-soft:#f6f9ff;
	--mja-white:#fff;
	--mja-danger:#ef4444;
	--mja-success:#16a34a;
	--mja-warn:#f59e0b;
	--mja-shadow:0 28px 80px rgba(15,23,42,.16);
	--mja-shadow-soft:0 14px 34px rgba(11,116,255,.10);
	--mja-radius:24px;
}

.mj-auth-page-shell,
.mj-auth-page-shell * ,
.mj-auth-modal,
.mj-auth-modal *{
	box-sizing:border-box;
}

.mj-auth-page-shell{
	direction:rtl;
	position:relative;
	width:min(1160px, calc(100% - 32px));
	margin:44px auto;
	min-height:620px;
	display:grid;
	grid-template-columns:minmax(320px, .95fr) minmax(420px, 1.05fr);
	gap:28px;
	align-items:stretch;
	font-family:inherit;
}

.mj-auth-page-shell--compact{
	grid-template-columns:minmax(300px,.9fr) minmax(390px, .85fr);
	min-height:520px;
}

.mj-auth-page-visual{
	position:relative;
	overflow:hidden;
	border-radius:32px;
	background:
		radial-gradient(circle at 18% 20%, rgba(11,116,255,.26), transparent 28%),
		radial-gradient(circle at 82% 70%, rgba(99,102,241,.22), transparent 28%),
		linear-gradient(135deg,#0f172a 0%,#111827 48%,#061326 100%);
	box-shadow:var(--mja-shadow);
	isolation:isolate;
}

.mj-auth-page-visual:before{
	content:"";
	position:absolute;
	inset:20px;
	border:1px solid rgba(255,255,255,.10);
	border-radius:26px;
	pointer-events:none;
}

.mj-auth-page-visual:after{
	content:"";
	position:absolute;
	width:380px;
	height:380px;
	left:-170px;
	bottom:-150px;
	background:radial-gradient(circle, rgba(11,116,255,.42), transparent 62%);
	filter:blur(6px);
	z-index:-1;
}

.mj-auth-orb{
	position:absolute;
	border-radius:999px;
	filter:blur(3px);
	opacity:.75;
}
.mj-auth-orb-1{width:170px;height:170px;right:36px;top:42px;background:rgba(11,116,255,.30)}
.mj-auth-orb-2{width:110px;height:110px;left:64px;bottom:110px;background:rgba(45,212,191,.22)}

.mj-auth-brand-card{
	position:absolute;
	inset:auto 42px 42px 42px;
	padding:32px;
	border-radius:28px;
	background:rgba(255,255,255,.10);
	border:1px solid rgba(255,255,255,.16);
	box-shadow:0 24px 70px rgba(0,0,0,.22);
	backdrop-filter:blur(16px);
	color:#fff;
}

.mj-auth-brand-logo{
	display:inline-flex;
	align-items:center;
	gap:8px;
	font-weight:900;
	letter-spacing:.2px;
	padding:9px 14px;
	border-radius:999px;
	background:rgba(255,255,255,.12);
	border:1px solid rgba(255,255,255,.16);
	margin-bottom:18px;
}

.mj-auth-brand-card h2{
	font-size:30px;
	line-height:1.55;
	margin:0 0 12px;
	color:#fff;
	font-weight:900;
}

.mj-auth-brand-card p{
	margin:0;
	font-size:15px;
	line-height:2;
	color:rgba(255,255,255,.76);
}

.mj-auth-brand-card ul{
	list-style:none;
	padding:0;
	margin:22px 0 0;
	display:grid;
	gap:10px;
}
.mj-auth-brand-card li{
	display:flex;
	align-items:center;
	gap:10px;
	color:rgba(255,255,255,.84);
	font-size:14px;
}
.mj-auth-brand-card li i{
	width:22px;
	height:22px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	border-radius:50%;
	background:rgba(11,116,255,.32);
	color:#8fc2ff;
}

.mj-auth-panel{
	border:1px solid var(--mja-border) !important;
	background:rgba(255,255,255,.92) !important;
	box-shadow:var(--mja-shadow) !important;
	border-radius:32px !important;
	overflow:hidden;
	backdrop-filter:blur(18px);
}

.jpanel-login.mj-auth-panel{
	margin:0 !important;
}

.mj-auth-panel-top{
	display:flex;
	align-items:flex-start;
	justify-content:space-between;
	gap:16px;
	padding:28px 32px 18px;
	border-bottom:1px solid #edf2fa;
}

.mj-auth-panel-top h1{
	margin:6px 0 0;
	font-size:25px;
	font-weight:900;
	color:var(--mja-ink);
}

.mj-auth-breadcrumb,
.mj-auth-kicker{
	display:inline-flex;
	align-items:center;
	gap:8px;
	color:var(--mja-primary);
	font-size:12px;
	font-weight:800;
	background:var(--mja-primary-soft);
	border:1px solid #d6e8ff;
	border-radius:999px;
	padding:6px 10px;
}

.mj-auth-home-link{
	display:inline-flex;
	align-items:center;
	gap:8px;
	white-space:nowrap;
	padding:10px 13px;
	border-radius:14px;
	background:#f3f6fb;
	border:1px solid #e4ebf6;
	color:#334155 !important;
	font-size:13px;
	font-weight:800;
	text-decoration:none !important;
}

.mj-auth-switcher{
	margin:20px 32px 0 !important;
	padding:6px !important;
	border:1px solid #e5edf7;
	background:#f5f8fd;
	border-radius:18px;
	display:grid !important;
	grid-template-columns:repeat(2,1fr);
	gap:6px;
}

.mj-auth-switch{
	display:flex !important;
	align-items:center;
	justify-content:center;
	gap:9px;
	min-height:46px;
	border-radius:14px;
	font-weight:900;
	font-size:14px;
	color:#64748b !important;
	text-decoration:none !important;
	transition:.2s ease;
}

.mj-auth-switch.is-active{
	background:#fff;
	color:var(--mja-primary) !important;
	box-shadow:0 10px 24px rgba(15,23,42,.08);
}

.mj-auth-panel-body{
	padding:24px 32px 32px !important;
}

.mj-auth-panel .account-form,
.mj-auth-panel .account-log-form,
.mj-auth-panel .account-reg-form{
	margin:0 !important;
}

.mj-auth-form{
	max-width:none !important;
	margin:0 !important;
	direction:rtl;
}

.mj-auth-card-head{
	margin-bottom:22px;
}

.mj-auth-card-head h3{
	font-size:23px;
	line-height:1.55;
	margin:12px 0 6px;
	font-weight:900;
	color:var(--mja-ink);
}

.mj-auth-card-head p{
	margin:0;
	font-size:14px;
	line-height:2;
	color:var(--mja-muted);
}

.mj-auth-mode-tabs{
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:8px;
	padding:6px;
	background:#f5f8fd;
	border:1px solid #e4ecf8;
	border-radius:18px;
	margin-bottom:20px;
}

.mj-auth-mode-tab{
	appearance:none;
	border:0;
	background:transparent;
	border-radius:14px;
	min-height:46px;
	display:flex;
	align-items:center;
	justify-content:center;
	gap:9px;
	font-weight:900;
	color:#64748b;
	transition:.2s ease;
}

.mj-auth-mode-tab.is-active{
	background:#fff;
	color:var(--mja-primary);
	box-shadow:0 10px 22px rgba(15,23,42,.08);
}

.mj-auth-pane{display:none;}
.mj-auth-pane.is-active{display:block;}

.mj-auth-result{
	border-radius:16px !important;
	padding:12px 14px !important;
	margin:0 0 16px !important;
	font-size:13px;
	line-height:1.8;
	border:1px solid #e6edf7;
	background:#f8fbff;
}

.mj-auth-result .error-response,
.mj-auth-status.bad,
.mj-auth-field-hint.is-error{
	color:var(--mja-danger) !important;
}
.mj-auth-result .success-response,
.mj-auth-status.ok,
.mj-auth-field-hint.is-ok{
	color:var(--mja-success) !important;
}
.mj-auth-field-hint.is-warn{color:var(--mja-warn) !important;}

.mj-auth-field{
	margin-bottom:16px;
}

.mj-auth-field label,
.mj-auth-label-row label{
	display:block;
	margin:0 0 8px;
	font-size:13px;
	font-weight:900;
	color:#1f2937;
}

.mj-auth-label-row{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:12px;
}

.mj-auth-mini-link{
	font-size:12px;
	font-weight:800;
	color:var(--mja-primary) !important;
	text-decoration:none !important;
}

.mj-auth-input-wrap{
	position:relative;
	display:flex;
	align-items:center;
	min-height:52px;
	border:1px solid var(--mja-border);
	background:#fff;
	border-radius:17px;
	transition:.2s ease;
	overflow:hidden;
}

.mj-auth-input-wrap:focus-within{
	border-color:#93c5fd;
	box-shadow:0 0 0 4px rgba(11,116,255,.10);
}

.mj-auth-input-wrap > i{
	width:48px;
	min-width:48px;
	text-align:center;
	color:#94a3b8;
	font-size:15px;
}

.mj-auth-input-wrap .form-control,
.mj-auth-form .form-control{
	width:100% !important;
	height:52px !important;
	min-height:52px !important;
	border:0 !important;
	box-shadow:none !important;
	background:transparent !important;
	font-size:14px !important;
	font-weight:700;
	color:#111827 !important;
	padding:0 0 0 14px !important;
	direction:inherit;
}

.mj-auth-input-wrap input[dir="ltr"]{
	direction:ltr !important;
	text-align:left;
	padding-left:14px !important;
	padding-right:0 !important;
}

.mj-auth-password-toggle{
	appearance:none;
	border:0;
	background:transparent;
	width:44px;
	min-width:44px;
	height:52px;
	color:#94a3b8;
}

.mj-auth-grid-2{
	display:grid;
	grid-template-columns:repeat(2,minmax(0,1fr));
	gap:14px;
}

.mj-auth-options-row{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:12px;
	margin:10px 0 4px;
}

.mj-auth-check-row{
	display:flex !important;
	align-items:flex-start;
	gap:10px;
	cursor:pointer;
	font-size:13px;
	line-height:1.9;
	color:#4b5563;
	font-weight:700;
	margin:0 0 14px !important;
}

.mj-auth-check-row input{
	position:absolute;
	opacity:0;
	pointer-events:none;
}

.mj-auth-check-row > span{
	width:20px;
	height:20px;
	min-width:20px;
	margin-top:4px;
	border-radius:7px;
	border:1px solid #cbd5e1;
	background:#fff;
	position:relative;
	transition:.2s ease;
}

.mj-auth-check-row input:checked + span{
	border-color:var(--mja-primary);
	background:var(--mja-primary);
}

.mj-auth-check-row input:checked + span:after{
	content:"";
	position:absolute;
	width:9px;
	height:5px;
	border:2px solid #fff;
	border-top:0;
	border-right:0;
	transform:rotate(-45deg);
	top:6px;
	left:5px;
}

.mj-auth-check-row em{
	font-style:normal;
}

.mj-auth-check-row a{color:var(--mja-primary) !important;font-weight:900;}

.mj-auth-actions-bottom,
.mj-auth-step-actions{
	display:flex;
	align-items:center;
	justify-content:flex-start;
	gap:10px;
	margin:18px 0 0 !important;
}

.mj-auth-submit,
.mj-auth-next,
.mj-auth-back,
.mj-login-send-code,
.mj-send-code{
	min-height:48px;
	border-radius:15px !important;
	font-weight:900 !important;
	padding:0 20px !important;
	border:0 !important;
	box-shadow:none !important;
}

.mj-auth-submit,
.mj-auth-next,
.mj-login-send-code,
.mj-send-code,
.mj-auth-form .btn-primary{
	background:linear-gradient(135deg,var(--mja-primary),var(--mja-primary-2)) !important;
	color:#fff !important;
	box-shadow:var(--mja-shadow-soft) !important;
}

.mj-auth-back,
.mj-auth-form .btn-default,
.mj-auth-form .btn-secondary{
	background:#f3f6fb !important;
	color:#334155 !important;
	border:1px solid #e2e8f0 !important;
}

.mj-auth-submit{
	display:inline-flex !important;
	align-items:center;
	justify-content:center;
	gap:8px;
	min-width:154px;
}

.mj-auth-bottom-link{
	margin:20px 0 0 !important;
	padding-top:16px;
	border-top:1px solid #edf2fa;
	text-align:center;
	font-size:13px;
	font-weight:700;
	color:#64748b;
}

.mj-auth-bottom-link a{
	color:var(--mja-primary) !important;
	font-weight:900;
	text-decoration:none !important;
}

.mj-auth-progress{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:8px;
	margin:0 0 22px;
}

.mj-auth-progress span{
	position:relative;
	display:flex;
	align-items:center;
	justify-content:center;
	min-height:38px;
	border-radius:999px;
	background:#f3f6fb;
	border:1px solid #e3ebf6;
	color:#94a3b8;
	font-size:12px;
	font-weight:900;
}

.mj-auth-progress span.is-active,
.mj-auth-progress span.is-done{
	background:var(--mja-primary-soft);
	border-color:#bfdbfe;
	color:var(--mja-primary);
}

.mj-auth-step{display:none;}
.mj-auth-step.is-active{display:block;animation:mjaFade .18s ease;}
@keyframes mjaFade{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}}

.mj-auth-step-title{
	margin-bottom:18px;
}
.mj-auth-step-title strong{
	display:block;
	font-size:18px;
	font-weight:900;
	color:#111827;
	margin-bottom:5px;
}
.mj-auth-step-title p{
	margin:0;
	font-size:13px;
	line-height:1.9;
	color:var(--mja-muted);
}

.mj-auth-role-switch{
	display:grid;
	grid-template-columns:repeat(2,minmax(0,1fr));
	gap:14px;
	margin:0;
}

.mj-auth-role-card{
	position:relative;
	display:flex;
	flex-direction:column;
	gap:10px;
	min-height:168px;
	padding:20px;
	border-radius:22px;
	border:1px solid var(--mja-border);
	background:#fff;
	box-shadow:0 10px 26px rgba(15,23,42,.04);
	cursor:pointer;
	transition:.2s ease;
	margin:0 !important;
}

.mj-auth-role-card:hover{
	border-color:#b7d6ff;
	transform:translateY(-1px);
}

.mj-auth-role-card.is-active{
	border-color:var(--mja-primary);
	box-shadow:0 18px 42px rgba(11,116,255,.15);
	background:linear-gradient(180deg,#fff,#f8fbff);
}

.mj-auth-role-card input{
	position:absolute;
	opacity:0;
	pointer-events:none;
}

.mj-auth-role-icon{
	width:54px;
	height:54px;
	border-radius:18px;
	display:flex;
	align-items:center;
	justify-content:center;
	background:var(--mja-primary-soft);
	color:var(--mja-primary);
	font-size:20px;
}

.mj-auth-role-card strong{
	font-size:16px;
	font-weight:900;
	color:#111827;
}

.mj-auth-role-card em{
	font-style:normal;
	font-size:12px;
	line-height:1.9;
	color:#64748b;
}

.mj-auth-role-card.is-active:after{
	content:"✓";
	position:absolute;
	left:16px;
	top:16px;
	width:26px;
	height:26px;
	border-radius:50%;
	background:var(--mja-primary);
	color:#fff;
	display:flex;
	align-items:center;
	justify-content:center;
	font-weight:900;
}

.mj-auth-fixed-role{
	display:flex;
	align-items:center;
	gap:10px;
	padding:18px;
	border:1px solid #dbeafe;
	background:#f0f7ff;
	border-radius:20px;
	font-weight:900;
	color:var(--mja-primary);
}

.mj-auth-hidden{display:none !important;}

.mj-auth-field-hint,
.mj-company-field-hint{
	margin-top:8px;
	font-size:12px;
	line-height:1.8;
	font-weight:700;
}

.mj-company-match-list{
	margin-top:8px;
	display:grid;
	gap:6px;
}
.mj-company-match-item{
	display:grid;
	grid-template-columns:auto 1fr auto;
	gap:8px;
	align-items:center;
	padding:8px 10px;
	border-radius:12px;
	background:#fff7ed;
	border:1px solid #fed7aa;
	color:#9a3412;
}
.mj-company-match-index{
	width:20px;
	height:20px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	border-radius:50%;
	background:#fdba74;
	color:#7c2d12;
	font-size:11px;
	font-weight:900;
}
.mj-company-match-score,
.mj-company-match-note{font-size:11px;color:#9a3412;}

.mj-auth-otp-intro{
	display:flex;
	gap:14px;
	align-items:flex-start;
	padding:16px;
	border-radius:20px;
	background:linear-gradient(135deg,#f8fbff,#eef6ff);
	border:1px solid #dbeafe;
	margin-bottom:14px;
}
.mj-auth-otp-icon{
	width:44px;
	height:44px;
	min-width:44px;
	border-radius:16px;
	background:#fff;
	color:var(--mja-primary);
	display:flex;
	align-items:center;
	justify-content:center;
	box-shadow:0 8px 20px rgba(11,116,255,.12);
}
.mj-auth-otp-intro strong{display:block;font-size:15px;font-weight:900;color:#111827;margin-bottom:4px;}
.mj-auth-otp-intro p{margin:0;font-size:12px;line-height:1.9;color:#64748b;}

.mj-login-otp-panel{
	padding:0;
}
.mj-login-otp-panel .mj-auth-actions,
.mj-auth-channel .mj-auth-actions{
	display:flex;
	align-items:center;
	gap:12px;
	flex-wrap:wrap;
	margin:12px 0;
}
.mj-auth-timer{
	font-size:12px;
	font-weight:800;
	color:#64748b;
}

.mj-auth-otp-boxes{
	display:flex;
	justify-content:center;
	gap:8px;
	direction:ltr;
	margin:14px 0;
}
.mj-auth-otp-boxes input{
	width:46px;
	height:52px;
	border-radius:16px;
	border:1px solid #cbd5e1;
	background:#fff;
	text-align:center;
	font-size:21px;
	font-weight:900;
	color:#111827;
	outline:none;
	transition:.2s ease;
}
.mj-auth-otp-boxes input:focus{
	border-color:var(--mja-primary);
	box-shadow:0 0 0 4px rgba(11,116,255,.11);
}
.mj-auth-status{
	min-height:22px;
	font-size:13px;
	font-weight:800;
	line-height:1.8;
}

.mj-auth-verify-panel{
	padding:18px;
	border-radius:24px;
	border:1px solid #dbeafe;
	background:linear-gradient(180deg,#fff,#f8fbff);
}
.mj-auth-verify-title{
	font-size:19px;
	font-weight:900;
	color:#111827;
	margin:0 0 6px;
}
.mj-auth-verify-desc{
	font-size:13px;
	line-height:1.9;
	color:#64748b;
	margin:0 0 16px;
}
.mj-auth-channel-list{
	display:grid;
	gap:12px;
}
.mj-auth-channel{
	padding:16px;
	border-radius:20px;
	border:1px solid #e2e8f0;
	background:#fff;
	transition:.2s ease;
}
.mj-auth-channel.is-active{
	border-color:#93c5fd;
	box-shadow:0 12px 30px rgba(11,116,255,.10);
}
.mj-auth-channel.is-verified{
	border-color:#bbf7d0;
	background:#f0fdf4;
}
.mj-auth-channel.is-error{
	border-color:#fecaca;
	background:#fff7f7;
}
.mj-auth-channel-head{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:12px;
}
.mj-auth-channel-title{font-weight:900;color:#111827;font-size:14px;}
.mj-auth-channel-target{font-size:12px;color:#64748b;margin-top:4px;direction:ltr;text-align:right;}
.mj-auth-check{
	width:28px;
	height:28px;
	border-radius:50%;
	background:#edf2f7;
	color:#fff;
	display:flex;
	align-items:center;
	justify-content:center;
	font-weight:900;
}
.mj-auth-channel.is-verified .mj-auth-check{background:var(--mja-success);}

.mj-auth-locked-overlay{
	position:fixed;
	inset:0;
	z-index:99999;
	background:rgba(15,23,42,.72);
	display:flex;
	align-items:center;
	justify-content:center;
	padding:20px;
	backdrop-filter:blur(10px);
}
.mj-auth-locked-card{
	width:min(560px,100%);
	background:#fff;
	border-radius:28px;
	padding:28px;
	box-shadow:var(--mja-shadow);
}
.mj-legacy-mobile-input{
	margin-bottom:14px;
}

.memberModalLogin.mj-auth-modal .modal-dialog,
.memberModalRegister.mj-auth-modal .modal-dialog{
	width:min(620px, calc(100% - 28px)) !important;
	margin:42px auto !important;
}
.memberModalRegister.mj-auth-modal .modal-dialog{width:min(760px, calc(100% - 28px)) !important;}

.memberModalLogin.mj-auth-modal .modal-content,
.memberModalRegister.mj-auth-modal .modal-content{
	border:0 !important;
	border-radius:30px !important;
	box-shadow:0 34px 90px rgba(15,23,42,.30) !important;
	overflow:hidden;
	background:#fff !important;
}

.memberModalLogin.mj-auth-modal .modal-header,
.memberModalRegister.mj-auth-modal .modal-header{
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:18px 24px !important;
	border-bottom:1px solid #edf2fa !important;
	background:#fff !important;
}
.memberModalLogin.mj-auth-modal .modal-title,
.memberModalRegister.mj-auth-modal .modal-title{
	font-size:17px;
	font-weight:900;
	color:#111827;
	margin:0;
}
.memberModalLogin.mj-auth-modal .close,
.memberModalRegister.mj-auth-modal .close{
	float:none !important;
	order:2;
	width:38px;
	height:38px;
	border-radius:14px;
	background:#f3f6fb !important;
	color:#334155 !important;
	opacity:1 !important;
	text-shadow:none !important;
	font-size:24px;
	line-height:1;
	margin:0 !important;
}
.memberModalLogin.mj-auth-modal .modal-body,
.memberModalRegister.mj-auth-modal .modal-body{
	padding:24px !important;
	background:linear-gradient(180deg,#fff,#f8fbff);
}
.modal-backdrop.in{
	opacity:.72 !important;
}

.mj-auth-modal .mj-auth-card-head h3{font-size:21px;}
.mj-auth-modal .mj-auth-card-head p{font-size:13px;}

@media (max-width: 991px){
	.mj-auth-page-shell,
	.mj-auth-page-shell--compact{
		grid-template-columns:1fr;
		width:min(720px, calc(100% - 24px));
		margin:24px auto;
	}
	.mj-auth-page-visual{min-height:280px;}
	.mj-auth-brand-card{position:relative;inset:auto;margin:24px;}
}

@media (max-width: 640px){
	.mj-auth-page-shell{width:calc(100% - 16px);margin:12px auto;}
	.mj-auth-panel-top{padding:20px;flex-direction:column;}
	.mj-auth-panel-body{padding:20px !important;}
	.mj-auth-switcher{margin:16px 20px 0 !important;}
	.mj-auth-grid-2,
	.mj-auth-role-switch,
	.mj-auth-progress{grid-template-columns:1fr;}
	.mj-auth-role-card{min-height:auto;}
	.mj-auth-brand-card{padding:22px;margin:16px;}
	.mj-auth-brand-card h2{font-size:22px;}
	.memberModalLogin.mj-auth-modal .modal-dialog,
	.memberModalRegister.mj-auth-modal .modal-dialog{
		width:calc(100% - 14px) !important;
		margin:8px auto !important;
	}
	.memberModalLogin.mj-auth-modal .modal-body,
	.memberModalRegister.mj-auth-modal .modal-body{
		padding:18px !important;
	}
	.mj-auth-otp-boxes input{width:40px;height:48px;border-radius:14px;}
	.mj-auth-actions-bottom,.mj-auth-step-actions{flex-direction:column;align-items:stretch;}
	.mj-auth-submit,.mj-auth-next,.mj-auth-back{width:100%;}
}
.mj-auth-input-wrap.is-invalid{
	border-color:#fecaca !important;
	box-shadow:0 0 0 4px rgba(239,68,68,.10) !important;
}

/* MineJobs auth bugfix: make validation hints obvious in the modern field layout. */
.mj-auth-form .mj-auth-field-hint,
.mj-auth-form .mj-company-field-hint{
	display:none;
	padding:9px 12px;
	border-radius:12px;
	border:1px solid #dbeafe;
	background:#f8fbff;
}
.mj-auth-form .mj-auth-field-hint.is-error,
.mj-auth-form .mj-company-field-hint.is-error{
	background:#fff1f2;
	border-color:#fecdd3;
	color:#be123c !important;
}
.mj-auth-form .mj-auth-field-hint.is-warn,
.mj-auth-form .mj-company-field-hint.is-warn{
	background:#fff7ed;
	border-color:#fed7aa;
	color:#9a3412 !important;
}
.mj-auth-form .mj-auth-field-hint.is-ok,
.mj-auth-form .mj-company-field-hint.is-ok{
	background:#f0fdf4;
	border-color:#bbf7d0;
	color:#15803d !important;
}
