/**
 * LAKASG Social Login — button styles (v2.12.0)
 *
 * Matches Google's Sign-In button brand guidelines:
 *   - 40px minimum height
 *   - 4px corner radius (Google uses 4–8px; we pick 6 for a gentle feel)
 *   - 1px border at #DADCE0
 *   - Roboto (fallback to system sans) at 500 weight
 *   - Hover state lightens background slightly
 *   - Focus visible for keyboard users
 */

.lakasg-social-buttons {
	display: flex;
	flex-direction: column;
	align-items: flex-start; /* overridden by Elementor selector control */
	gap: 10px;
	margin-bottom: 18px;
}

.lakasg-social-divider {
	display: flex;
	align-items: center;
	text-align: center;
	color: #6b7280;
	font-size: 0.85rem;
	margin: 4px 0 14px;
}
.lakasg-social-divider::before,
.lakasg-social-divider::after {
	content: '';
	flex: 1;
	border-bottom: 1px solid #e4e7ea;
}
.lakasg-social-divider span {
	padding: 0 12px;
}

/* Base social button */
.lakasg-social-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	min-height: 42px;
	padding: 0 16px;
	border: 1px solid #dadce0;
	border-radius: 6px;
	background: #ffffff;
	color: #3c4043;
	font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
	box-sizing: border-box;
	transition: background-color 150ms, box-shadow 150ms, border-color 150ms;
}
.lakasg-social-btn:hover {
	background: #f8faff;
	border-color: #d2e3fc;
	box-shadow: 0 1px 2px rgba(60, 64, 67, 0.1), 0 1px 3px rgba(60, 64, 67, 0.08);
	text-decoration: none;
	color: #3c4043;
}
.lakasg-social-btn:focus {
	outline: none;
	border-color: #4285f4;
	box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.2);
}
.lakasg-social-btn:active {
	background: #f1f3f4;
}
.lakasg-social-btn[disabled],
.lakasg-social-btn.is-loading {
	opacity: 0.6;
	cursor: wait;
	pointer-events: none;
}

.lakasg-social-btn-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}
.lakasg-social-btn-icon svg {
	width: 18px;
	height: 18px;
	display: block;
}
.lakasg-social-btn-text {
	flex: 0 1 auto;
}

/* Google-specific tweak — slightly wider for the "Sign in with Google" string */
.lakasg-social-btn--google {
	/* uses the base — no overrides. Kept as a class hook for theme overrides. */
}


