/**
 * MultiAuth Login — Social Login Button Styles
 */

/* ── Social Buttons Container ────────────────────────────────── */
.mal-social-buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 0;
}

/* ── Social Button Base ──────────────────────────────────────── */
.mal-social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 10px 16px;
	border: 1px solid #dadce0;
	border-radius: 6px;
	background: #fff;
	color: #3c4043;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s, box-shadow 0.2s;
	line-height: 1.4;
	text-align: center;
	box-sizing: border-box;
}

.mal-social-btn:hover {
	background: #f8f9fa;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
	text-decoration: none;
	color: #3c4043;
}

.mal-social-btn:focus {
	outline: 2px solid #FF7396;
	outline-offset: 2px;
}

.mal-social-btn:active {
	background: #f1f3f4;
}

/* ── Social Icon ─────────────────────────────────────────────── */
.mal-social-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

/* ── Google-specific ─────────────────────────────────────────── */
.mal-social-btn--google {
	border-color: #dadce0;
}

/* ── Social Divider ──────────────────────────────────────────── */
.mal-social-divider {
	display: flex;
	align-items: center;
	text-align: center;
	margin: 16px 0;
	color: #72777c;
	font-size: 13px;
}

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

.mal-social-divider span {
	padding: 0 12px;
	white-space: nowrap;
}

/* ── wp-login.php overrides ──────────────────────────────────── */
#loginform .mal-social-buttons {
	margin-bottom: 0;
}

#loginform .mal-social-btn {
	width: 100%;
}

#loginform .mal-social-divider {
	margin: 12px 0;
}
