.oauth-buttons {
	margin-top: 1rem;
}

.oauth-buttons__divider {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	color: #8a8496;
	font-size: 0.8125rem;
}

.oauth-buttons__divider::before,
.oauth-buttons__divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #e8e4ef;
}

.oauth-buttons__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.oauth-buttons__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 8px 10px;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	background: #fff;
	color: #2f2a3a;
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.oauth-buttons__btn:hover,
.oauth-buttons__btn:focus-visible {
	outline: none;
	border-color: #cfc9d8;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
	transform: translateY(-1px);
	color: #2f2a3a;
	text-decoration: none;
}

.oauth-buttons__icon {
	width: 22px;
	height: 22px;
	object-fit: contain;
	flex: 0 0 auto;
}

.oauth-buttons__name {
	line-height: 1.2;
	white-space: nowrap;
}

@media (max-width: 420px) {
	.oauth-buttons__list {
		grid-template-columns: 1fr;
	}
}
