/* Social OAuth combined block */

.social-oauth-block.panel {
	margin-bottom: 12px;
	padding: 1em;
}

.social-oauth-btns {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 285px;
	margin: 0 auto;
}

.social-oauth-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	box-sizing: border-box;
	width: 100%;
	min-height: 44px;
	padding: 10px 20px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none !important;
	color: #fff !important;
	border-radius: 12px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
	transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
	-webkit-tap-highlight-color: transparent;
}

.social-oauth-btn:active {
	transform: scale(0.98);
}

.social-oauth-btn__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 28px;
	height: 28px;
}

.social-oauth-btn__logo svg {
	display: block;
	width: 28px;
	height: 28px;
}

.social-oauth-btn__text {
	text-align: center;
}

/* VK */

.vk-oauth-btn { background: #0077FF; }

.vk-oauth-btn:hover,
.vk-oauth-btn:focus {
	color: #fff !important;
	background: #0062CC;
	box-shadow: 0 2px 8px rgba(0, 119, 255, 0.35);
}

.vk-oauth-btn:focus {
	outline: 2px solid #0077FF;
	outline-offset: 2px;
}

/* Yandex */

.yandex-oauth-btn { background: #000; }

.yandex-oauth-btn:hover,
.yandex-oauth-btn:focus {
	color: #fff !important;
	background: #333;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.yandex-oauth-btn:focus {
	outline: 2px solid #fc3f1e;
	outline-offset: 2px;
}

@media (max-width: 700px) {
	.social-oauth-btn {
		min-height: 48px;
		padding: 12px 18px;
		font-size: 16px;
		border-radius: 14px;
	}
}
