/* Auth TokkiNovel */
.tokki-auth-box {
	max-width: 480px;
	margin: 40px auto;
	background: #1A191D;
	border: 1px solid rgba(255,255,255,.04);
	border-radius: 22px;
	padding: 32px;
	color: #E6E6E7;
}

.tokki-auth-box h2 {
	margin: 0 0 10px;
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	color: #B98BDD;
}

.tokki-auth-subtitle {
	text-align: center;
	color: #B9B7C0;
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 26px;
}

.tokki-auth-form label {
	display: block;
	margin: 16px 0 7px;
	color: #E6E6E7;
	font-weight: 600;
	font-size: 14px;
}

.tokki-auth-form input[type="text"],
.tokki-auth-form input[type="email"],
.tokki-auth-form input[type="password"] {
	width: 100%;
	background: #222124;
	border: 1px solid #313034;
	border-radius: 14px;
	padding: 12px 14px;
	color: #E6E6E7;
	outline: none;
}

.tokki-auth-form input:focus {
	border-color: #B98BDD;
}

.tokki-auth-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 22px;
	padding: 12px 18px;
	border-radius: 999px;
	background: #B98BDD;
	color: #fff !important;
	text-decoration: none !important;
	font-size: 15px;
	font-weight: 700;
	border: none;
	cursor: pointer;
}

.tokki-auth-btn:hover,
.tokki-auth-btn:focus {
	background: #9654CA;
	color: #fff !important;
}

.tokki-auth-bottom {
	text-align: center;
	margin: 18px 0 0;
	color: #B9B7C0;
	font-size: 14px;
}

.tokki-auth-bottom a {
	color: #B98BDD;
	text-decoration: none;
	font-weight: 600;
}

.tokki-auth-check {
	display: flex !important;
	align-items: center;
	gap: 8px;
	margin-top: 14px !important;
	color: #B9B7C0 !important;
}

.tokki-auth-check input {
	width: auto !important;
}

.tokki-auth-error,
.tokki-auth-success {
	padding: 12px 14px;
	border-radius: 14px;
	margin-bottom: 18px;
	font-weight: 600;
	font-size: 14px;
}

.tokki-auth-error {
	background: rgba(230, 70, 80, 0.14);
	color: #ff9aa2;
}

.tokki-auth-success {
	background: rgba(65, 170, 95, 0.14);
	color: #8ee0a4;
}

@media (max-width: 768px) {
	.tokki-auth-box {
		margin: 24px 14px;
		padding: 24px 18px;
		border-radius: 18px;
	}

	.tokki-auth-box h2 {
		font-size: 28px;
	}
}

