/* ─────────────────────────────────────────────────────────────────── */
/* Civi-GO Google SSO Login – Estilos del botón en wp-login.php    */
/* ─────────────────────────────────────────────────────────────────── */

/* Contenedor del bloque SSO */
.civigo-sso-wrapper {
	margin-top: 16px;
	margin-bottom: 8px;
}

/* Divisor "o" */
.civigo-sso-divider {
	display: flex;
	align-items: center;
	text-align: center;
	margin-bottom: 16px;
	color: #888;
	font-size: 12px;
}

.civigo-sso-divider::before,
.civigo-sso-divider::after {
	content: '';
	flex: 1;
	border-bottom: 1px solid #ddd;
}

.civigo-sso-divider span {
	padding: 0 8px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Botón principal */
.civigo-sso-google-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 10px 16px;
	background: #ffffff;
	border: 1px solid #dadce0;
	border-radius: 4px;
	color: #3c4043;
	font-family: 'Google Sans', Roboto, Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	box-sizing: border-box;
}

.civigo-sso-google-btn:hover {
	background: #f8f9fa;
	box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3);
	border-color: #c6c6c6;
	color: #3c4043;
}

.civigo-sso-google-btn:focus {
	outline: 2px solid #4285f4;
	outline-offset: 2px;
}

.civigo-sso-google-btn:active {
	background: #f1f3f4;
}

/* Ícono SVG de Google */
.civigo-sso-google-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

/* Mensaje de error SSO */
.civigo-sso-error {
	background: #fef0f0;
	border: 1px solid #f5c6cb;
	border-radius: 4px;
	color: #721c24;
	font-size: 13px;
	line-height: 1.5;
	margin-bottom: 12px;
	padding: 10px 14px;
}
