.login-form {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	padding: 20px 30px;
	width: 100%;
	min-width: 300px;
	max-width: 500px;
	background: #eff1f4;
}
.login-form__header {
	font-size: 21px;
    line-height: 130%;
	padding: 0;
	margin: 0 0 20px 0;
	text-align: center;
}
.login-form__input {
	margin-bottom: 15px;
}
.login-form__input input {
	width: 100%;
	display: block;
	font-size: 16px;
	padding: 10px;
	border: 1px solid #B0B0B0;
	outline: none;
	text-align: center;
}
.login-form__errors p {
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	color: red;
	margin-bottom: 10px;
}
.login-form__button {}
.login-form__button input {
	width: 100%;
/*	background: #60c43f;
    border-color: #4c9f31;
	font-size: 18px;*/
	margin-top:10px;
}
.login-form__social-divider {
	position: relative;
    margin-top: 14px;
    margin-bottom: 14px;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.login-form__social-divider__line {
	height: 1px;
    border-top: 1px solid #e5e5e5;
    width: 45%;
}
.login-form__social-divider__line__or {
	margin: auto;
    width: 4em;
    text-align: center;
	color:#666;
	font-size:12px;
}
.login-form__social-links {
	text-align: center;
	margin:0 auto;
	margin-bottom:10px;
}
.reg__notice{
    background: rgba(255, 162, 0, 0.25);
	border-radius: 16px;
    padding: 15px;
    margin: 0 0 12px 0;
    box-shadow: 0px 0px 0px 1px rgba(255,255,255,1) inset;
    color: #000;
    font-size: 14px;
}

.login2__bg {
	background-color: #F6F8FA;
	position: relative;
	overflow: hidden;
	padding: 10px 20px;
}
.login2__watermark {
	position: absolute;
	top: -20px;
	right: -20px;
	width: 150px;
	height: 150px;
	color: #E4E7EC;
	pointer-events: none;
}
.login2__bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, #E4E7EC 1px, transparent 1.5px);
	background-size: 16px 16px;
	-webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 100%);
	mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 100%);
}
.login2__card {
	position: relative;
	z-index: 1;
	background: #fff;
	border-radius: 22px;
	box-shadow: 0 14px 34px rgba(18, 33, 63, .10);
	padding: 24px 20px;
}
.login2__label {
	display: block;
	color: #4B4C56;
	font-size: 14px;
	margin-bottom: 8px;
}
.login2__divider {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 12px;
	color: #8B90A0;
	font-size: 14px;
	margin: 24px 0 16px;
}
.login2__divider::before,
.login2__divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #DEE1E7;
}
.login2__oauth_btn {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	background: #fff;
	border: 1px solid #E3E6EB;
	border-radius: 999px;
	padding: 14px;
	color: #4B4C56;
	font-size: 17px;
	text-decoration: none;
}
.login2__oauth_btn img {
	width: 20px;
	height: 20px;
}
.login2__submit {
	display: block;
	width: 100%;
	border: none;
	border-radius: 14px;
	background-color: #12499A;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	padding: 16px;
	cursor: pointer;
}
.login2__submit:disabled {
	background-color: #a1c7ff;
	cursor: default;
}
.login2__input {
	width: 100%;
	padding: 14px 16px 14px 44px;
	border: 1px solid #D8DBE3;
	border-radius: 14px;
	font-size: 15px;
	line-height: 140%;
	color: #242631;
	background: #fff;
	outline: none;
}
.login2__input::placeholder {
	color: #A6ABB8;
}
.login2__input:focus {
	border-color: #12499A;
}