/* Site Auth Components (used inside default/layout.html) */

/* Social Login */
.social-divider {
	display: flex;
	align-items: center;
	margin: 1.25rem 0;
	color: #9ca3af;
	font-size: 0.85rem;
}

.social-divider::before,
.social-divider::after {
	content: '';
	flex: 1;
	border-bottom: 1px solid #e5e7eb;
}

.social-divider span {
	padding: 0 0.75rem;
	white-space: nowrap;
}

.social-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
}

.btn-social {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #e1e5e9;
	background: #fff;
	color: #374151;
	font-size: 1.1rem;
	transition: all 0.2s ease;
	text-decoration: none;
}

.btn-social:hover {
	transform: translateY(-2px);
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	text-decoration: none;
}

.btn-social.google { color: #ea4335; }
.btn-social.google:hover { background: #fef2f2; border-color: #ea4335; }
.btn-social.facebook { color: #1877f2; }
.btn-social.facebook:hover { background: #eff6ff; border-color: #1877f2; }
.btn-social.github { color: #333; }
.btn-social.github:hover { background: #f3f4f6; border-color: #333; }
.btn-social.vk { color: #4a76a8; }
.btn-social.vk:hover { background: #f0f4f8; border-color: #4a76a8; }
.btn-social.yandex { color: #fc3f1d; }
.btn-social.yandex:hover { background: #fff5f2; border-color: #fc3f1d; }
.btn-social.telegram { color: #0088cc; }
.btn-social.telegram:hover { background: #f0f9ff; border-color: #0088cc; }
.btn-social.apple { color: #000; }
.btn-social.apple:hover { background: #f3f4f6; border-color: #000; }

/* Password strength indicator */
.password-strength {
	height: 4px;
	border-radius: 2px;
	background: #e5e7eb;
	overflow: hidden;
}

.password-strength .bar {
	height: 100%;
	border-radius: 2px;
	transition: width 0.3s, background-color 0.3s;
	width: 0;
}
